holt 0.8.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
//! 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::{ReadIndex, ReadIndexAnswer, ReadIndexCache, ReadIndexHit, ReadIndexStamp};
pub(crate) use page_cache::ReadPageCache;