grumpydb 0.3.0

A disk-based object storage engine with B+Tree indexing and page-based storage
Documentation
1
2
3
4
5
6
//! Buffer pool: LRU cache for pages in memory.

pub mod frame;
pub mod pool;

// TODO: Implement BufferPool (Phase 6)