A collection of (hopefully) highly concurrent containers.
HashMap
: a "lock-free" hash map using Robin Hood bucket stealingVec
: a "lock-free" growing-only vectorBTreeMap
: a "lock-free" map based on B-TreesBPlusTreeMap
: a "lock-free" map based on B+TreesSee the docs.rs
-hosted documentation or build it using the following commands:
bash
git clone https://github.com/ecatehq/octopus
cd octopus
cargo doc --no-deps --open
See the ROADMAP.md
file or the
online roadmap.
See the CHANGELOG.md
file.