infinite-db 0.1.4

A spatial-graph database using n-dimensional curves and hyperedges for engineering logic.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Embedded storage engine components.

/// Write-ahead logging and recovery.
pub mod wal;
/// NVMe-friendly block store and cache.
pub mod nvme;
/// Block compaction routines.
pub mod compaction;
/// Retention policy and garbage collection helpers.
pub mod gc;