mmdb 4.1.0

The storage engine behind vsdb — a pure-Rust LSM-Tree key-value store
Documentation
1
2
3
4
5
6
7
8
//! MANIFEST: tracks the set of SST files that make up each "Version" of the database.
//!
//! A MANIFEST file is a sequence of VersionEdit records, each describing
//! a delta (files added/removed) from the previous state.

pub mod version;
pub mod version_edit;
pub mod version_set;