trine-kv 0.6.0

Embedded LSM MVCC key-value database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Durable content-upload lifecycle.
//!
//! The public lifecycle is intentionally split by responsibility: session
//! creation/resume, sealing, abort/cleanup, quota accounting, and operator
//! maintenance. Each operation remains an inherent [`Db`](super::Db) method,
//! while transition-specific helpers stay inside this module boundary.

mod abort;
mod maintenance;
mod quota;
mod seal;
mod session;