2 unstable releases

0.2.0 Oct 20, 2022
0.1.0 Jul 10, 2021

#391 in Concurrency

Download history 51/week @ 2024-11-16 17/week @ 2024-11-23 2/week @ 2024-11-30 23/week @ 2025-01-11 154/week @ 2025-01-18 31/week @ 2025-01-25 51/week @ 2025-02-01 123/week @ 2025-02-08 189/week @ 2025-02-15 434/week @ 2025-02-22 120/week @ 2025-03-01

901 downloads per month

MIT license

200KB
4K SLoC

Crate API

BzTree

BzTree(concurrent B-tree) implementation for Rust based on paper BzTree: A High-Performance Latch-free Range Index for Non-Volatile Memory.
Current implementation doesn't support non-volatile memory and supposed to be used only as in-memory(not persistent) data structure.
BzTree uses MwCAS crate to get access to multi-word CAS.

Examples

use bztree::BzTree;

let tree = BzTree::new();
let guard = crossbeam_epoch::pin();

let key1 = "key_1".to_string();
assert!(tree.insert(key1.clone(), 1, &guard));
assert!(!tree.insert(key1.clone(), 5, &guard));
tree.upsert(key1.clone(), 10, &guard);

assert!(matches!(tree.delete(&key1, &guard), Some(&10)));

let key2 = "key_2".to_string();
tree.insert(key2.clone(), 2, &guard);
assert!(tree.compute(&key2, |(_, v)| Some(v + 1), &guard));
assert!(matches!(tree.get(&key2, &guard), Some(&3)));

assert!(tree.compute(&key2, |(_, v)| {
 if *v == 3 {
     None
 } else {
     Some(v + 1)
 }
}, &guard));
assert!(matches!(tree.get(&key2, &guard), None));

Dependencies

~295KB