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
9
//! Write-Ahead Log for crash recovery and durability.
//!
//! The WAL ensures that committed transactions survive crashes. Every page
//! modification is logged before being applied, and recovery replays
//! committed transactions on startup.

pub mod record;
pub mod recovery;
pub mod writer;