holt 0.1.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
//! Public API surface — `Tree`, `Iter`, `Txn`, `TreeBuilder`.
//!
//! This module is what users will write `use holt::{...}` for.

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