pagedb 0.1.0-beta.1

Encrypted, portable, embedded page store with B+ tree and segment-file surfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Open-flow recovery: apply-journal replay, catalog reconciliation,
//! tombstone GC.

pub mod deep_walk;
pub mod gc;
pub mod journal;
pub mod reconcile;

pub use deep_walk::{DeepWalkReport, run_deep_walk};
pub use journal::{
    ApplyJournalRecord, JournalAction, execute_journal_actions, replay_apply_journal,
};
pub use reconcile::{repair_catalog, verify_catalog};