Skip to main content

Crate aingle_wal

Crate aingle_wal 

Source
Expand description

Write-Ahead Log (WAL) for AIngle clustering and replication.

Provides a durable, ordered log of all mutations before they hit the graph/memory store. Used as the foundation for Raft consensus log replication.

Re-exports§

pub use entry::WalEntry;
pub use entry::WalEntryKind;
pub use reader::VerifyResult;
pub use reader::WalReader;
pub use writer::WalWriter;

Modules§

entry
WAL entry types and serialization.
reader
WAL reader for replay and replication.
segment
WAL segment file management.
writer
Thread-safe WAL writer.