lsmdb 1.0.0

lsmdb is an efficient storage engine that implements the Log-Structured Merge Tree (LSM-Tree) data structure, designed specifically for handling key-value pairs.
Documentation
1
2
3
4
5
6
7
8
mod block;
pub(crate) mod compaction;
pub(crate) mod manifest;
pub(crate) mod sst;
mod varint;

pub(crate) use manifest::{Manifest, VersionEdit};
pub(crate) use sst::{SSTableBuilder, SSTableReader};