[go: up one dir, main page]

scc 0.3.1

scalable concurrent data structures for database management systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Scalable concurrent containers.
//!
//! # scc::HashMap
//! A concurrent hash map that dynamically grows and shrinks in a non-blocking manner without sharding.

mod hashmap;
mod treemap;

pub use hashmap::Accessor;
pub use hashmap::HashMap;
pub use hashmap::Scanner;
pub use hashmap::Statistics;