alopex-core 0.5.0

Core storage engine for Alopex DB - LSM-tree, columnar storage, and vector index
Documentation
1
2
3
4
5
6
7
//! Compaction-related utilities (merging iterator, leveled compaction planning).
//!
//! This module is primarily used by the LSM-tree engine, but is kept separate so it can be
//! unit-tested without the full `LsmKV` integration.

pub mod leveled;
pub mod merge_iter;