grumpydb 0.2.0

A disk-based object storage engine with B+Tree indexing and page-based storage
Documentation
1
2
3
4
5
6
7
//! Write-Ahead Log for crash recovery and durability.

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

// TODO: Implement WAL interface (Phase 5)