infinite-db 0.4.0

A spatial-graph database using n-dimensional curves and hyperedges for engineering logic.
1
2
3
4
5
6
7
8
9
//! CRCW embedded database ([`InfiniteDb`], format v4/v5 Hilbert shards).

mod concurrent_db;
pub mod read_txn;

pub use concurrent_db::{InfiniteDb, OpenOptions};
pub use crate::engine::watermark::RevisionRange;
pub use crate::engine::io_thread::IoStats;
pub use read_txn::ReadTxn;