kglite 0.14.3

Pure-Rust embedded Cypher knowledge graph engine with in-memory, mmap, and disk storage, and agent-facing schema introspection
Documentation
1
2
3
4
5
6
7
8
9
//! mmap-backed columnar storage backend.
//!
//! `MappedGraph` (defined in `storage::mod`) wraps a petgraph
//! `StableDiGraph` with mmap-backed columnar property storage. This
//! subdir owns the mmap primitives (`mmap_vec`) and the mmap-backed
//! column store used by the mapped backend.

pub mod column_store;
pub mod mmap_vec;