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
- Host: GitHub
- URL: https://github.com/chopinsky/byte_buffer
- Owner: Chopinsky
- License: mit
- Created: 2019-01-24T16:17:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-01T19:04:12.000Z (over 5 years ago)
- Last Synced: 2024-11-29T08:15:02.358Z (over 1 year ago)
- Language: Rust
- Size: 164 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.