logdb 0.3.0

Embedded, append-only, crash-recoverable, optionally tamper-proof local log database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Background pipeline threads.
//!
//! The pipeline consists of:
//! - **Sealer** (optional): computes SHA-256 hash chain over published slots
//! - **Committer**: serializes records from slots to segment files, advances
//!   committed_cursor and durable_cursor
//! - **Pusher** (optional): pushes durable records to a remote endpoint

pub mod committer;
#[cfg(feature = "hash-chain")]
pub mod sealer;
pub mod signal;
pub mod trigger;