holt 0.8.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
9
10
11
12
13
//! Read-index accelerators.
//!
//! These structures are advisory only. The blob file remains the
//! source of truth; stale, missing, or corrupt indexed state must make the
//! caller fall back to the authoritative full-blob path.

mod index;
mod page_cache;

pub(crate) use index::{
    PrefixLiveness, ReadIndex, ReadIndexAnswer, ReadIndexCache, ReadIndexHit, ReadIndexStamp,
};
pub(crate) use page_cache::ReadPageCache;