2 unstable releases

0.2.0 Oct 20, 2022
0.1.0 Jul 10, 2021

#313 in Concurrency

Download history 50/week @ 2024-01-27 100/week @ 2024-02-03 116/week @ 2024-02-10 66/week @ 2024-02-17 67/week @ 2024-02-24 92/week @ 2024-03-02 283/week @ 2024-03-09 124/week @ 2024-03-16 236/week @ 2024-03-23

738 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

~300KB