clawdb 0.1.0

The cognitive database for AI agents — unified memory, semantic retrieval, branching, sync, and governance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Transaction management: MVCC-style read/write coordination.

pub mod context;
pub mod coordinator;
pub mod log;
pub mod manager;

pub use context::TransactionContext;
pub use coordinator::TransactionCoordinator;
pub use log::TransactionLog;
pub use manager::TransactionManager;