infinite-db 0.3.0

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

/// On-disk format version markers.
pub mod format;
/// Cluster node metadata (format v5 additive).
#[cfg(feature = "sync")]
pub mod cluster;
/// Append-only hot segment tails (direct-write path).
pub mod hot_segment;
/// 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;