holt 0.2.1

An adaptive-radix-tree metadata storage engine for path-shaped keys, with per-blob concurrency and crash-safe persistence.
Documentation
1
2
3
4
5
6
7
8
//! Concurrency primitives.
//!
//! `HybridLatch` is a 3-mode latch held per blob frame. The
//! contract follows LeanStore (Leis et al., ICDE 2018).

mod hybrid_latch;

pub use hybrid_latch::{Guard, HybridLatch};