An open API service indexing awesome lists of open source software.

https://github.com/chopinsky/byte_buffer

A Rust crate for easy byte buffer management and reuse
https://github.com/chopinsky/byte_buffer

Last synced: 11 months ago
JSON representation

A Rust crate for easy byte buffer management and reuse

Awesome Lists containing this project

README

          

## The sync data libraries
This repository contains a few crates that help `Rust` programs to handle heavily used
data elements more gracefully, and hence improve the overall performance around hot
code region.

In particular, the repo currently have 2 published crates:
* [`byte_buffer`](https://github.com/Chopinsky/byte_buffer/blob/master/byte_buffer/README.md): a library for reusing byte array in heavy I/O code;
* [`sync_pool`](https://github.com/Chopinsky/byte_buffer/blob/master/sync_pool/README.md): a library that's more generic for reusing heavy and (usually) heap based
data elements.