grumpydb 1.2.0

A disk-based object storage engine with B+Tree indexing and page-based storage
Documentation
1
2
3
4
5
6
7
8
//! Buffer pool: LRU cache for pages in memory.
//!
//! The buffer pool caches frequently accessed pages to reduce disk I/O.
//! It uses LRU eviction when the pool is full and tracks dirty pages
//! for efficient flushing.

pub mod frame;
pub mod pool;