Skip to main content

ember_persistence/
lib.rs

1//! ember-persistence: durability layer.
2//!
3//! Handles append-only file logging, point-in-time snapshots,
4//! and crash recovery.
5
6pub mod aof;
7pub mod format;
8pub mod recovery;
9pub mod snapshot;