Expand description
Concurrent and asynchronous containers.
HashMap: concurrent and asynchronous hash map.HashIndex: concurrent and asynchronous hash map optimized for read.TreeIndex: concurrent and asynchronous B+ tree optimized for read.Queue: lock-free concurrent queue.
Utilities.
ebr: epoch-based reclamation.LinkedList: lock-free concurrent linked list type trait.
Re-exports
pub use hash_map::HashMap;pub use hash_index::HashIndex;pub use hash_set::HashSet;pub use tree_index::TreeIndex;Modules
Epoch-based reclamation.
HashIndex is a read-optimized concurrent and asynchronous hash map.
TreeIndex is a read-optimized concurrent and asynchronous B+ tree.
Structs
Traits
LinkedList is a type trait implementing a lock-free singly linked list.