//! MenteDB Storage Engine: page based storage with WAL and buffer pool.
//!
//! This crate implements the low-level storage engine:
//! - **Page manager**: file backed 16KB pages with free list allocation
//! - **Write ahead log (WAL)**: append only, CRC checked, LZ4 compressed entries
//! - **Buffer pool**: fixed capacity page cache with CLOCK eviction
//! - **Storage engine**: unified facade for memory node persistence
/// Snapshot backup utilities.
/// Fixed capacity page cache with CLOCK eviction.
/// Unified storage facade for memory persistence.
/// File backed 16KB page manager with free list allocation.
/// Append only write ahead log with CRC checks and LZ4 compression.
// Re-export key types at crate root for convenience.
pub use BufferPool;
pub use StorageEngine;
pub use ;
pub use ;