holt 0.5.5

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
14
15
16
17
18
//! Public API surface — `Tree`, `DB`, atomic batches, `Record`,
//! `RecordVersion`, scoped read [`view`]s, path-shaped key helpers,
//! 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 checkpoint;
pub mod config;
pub mod db;
pub mod errors;
pub mod key;
pub mod snapshot;
pub mod stats;
pub mod tree;
pub mod view;