[go: up one dir, main page]

Crate scc

source · []
Expand description

Concurrent containers.

  • HashMap: concurrent hash map.
  • HashIndex: concurrent hash map optimized for read.
  • TreeIndex: concurrent B+ tree optimized for read.

Utilities.

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.

The module implements HashIndex.

The module implements HashMap.

The module implements HashSet.

The module implements TreeIndex.

Structs

Queue is a lock-free concurrent first-in-first-out queue.

Traits

LinkedList is a type trait implementing a lock-free singly linked list.