dbx-core 0.2.2

High-performance file-based database engine with 5-Tier Hybrid Storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod api;
pub mod mvcc;

// Re-export MVCC modules for backward compatibility
pub use mvcc::gc;
pub use mvcc::manager;
pub use mvcc::snapshot;
pub use mvcc::version;
pub use mvcc::version_manager;
pub use mvcc::versionable;

// Re-export MVCC types
pub use mvcc::{TimestampOracle, VersionManager, Versionable};

// Re-export API types
pub use api::{Active, Committed, RolledBack, Transaction, TxState};