macrame-db 0.7.0

A Bitemporal Graph Ledger on libSQL · Embedded knowledge database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod archive;
pub mod as_of;
pub mod interval;
pub mod replay;
pub mod snapshot;

pub use archive::{archive, ArchiveReport};
pub use as_of::{hydrate_attributes, query_as_of_edges, NodeAttributes};
pub use interval::Interval;
pub use replay::{reconstruct, verify_snapshot_chain, ChainCheck, MaterializedState};
pub use snapshot::{
    cleanup_expired_snapshots, load_snapshot, save_snapshot, write_final, SnapshotCadence,
};