holt 0.3.0

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
9
10
11
12
//! Public API surface — `Tree`, `TxnBatch`, `TreeBuilder`,
//! plus the curated re-export modules ([`range`], [`stats`]).
//!
//! This module is what users will write `use holt::{...}` for.

pub mod builder;
pub mod config;
pub mod errors;
pub mod range;
pub mod stats;
pub mod tree;
pub mod txn;