holt 0.3.2

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
13
//! Public API surface — `Tree`, `AtomicBatch`, `Record`,
//! `RecordVersion`, scoped read [`view`]s, record/key range
//! iterators, `TreeBuilder`, plus the curated [`stats`] module.
//!
//! This module is what users will write `use holt::{...}` for.

pub mod atomic;
pub mod builder;
pub mod config;
pub mod errors;
pub mod stats;
pub mod tree;
pub mod view;