memvid-core 2.0.139

Core library for Memvid v2, a crash-safe, deterministic, single-file AI memory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Low-level IO primitives for interacting with `.mv2` files.

pub mod header;
#[cfg(feature = "parallel_segments")]
pub mod manifest_wal;
#[cfg(feature = "temporal_track")]
pub mod temporal_index;
pub mod time_index;
pub mod wal;

pub use wal::{EmbeddedWal, WalRecord, WalStats};