| Crates.io | sync_tools |
| lib.rs | sync_tools |
| version | 0.1.1 |
| created_at | 2021-02-01 19:04:18.278194+00 |
| updated_at | 2021-02-01 19:04:18.278194+00 |
| description | a collection of libraries to promote object reuse |
| homepage | |
| repository | |
| max_upload_size | |
| id | 349367 |
| size | 3,308 |
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: a library for reusing byte array in heavy I/O code;sync_pool: a library that's more generic for reusing heavy and (usually) heap based
data elements.