kglite 0.10.26

Pure-Rust knowledge graph engine — Cypher pipeline, snapshot/working CoW transactions, columnar/mmap/disk storage backends, optional dataset loaders (SEC EDGAR, Sodir, Wikidata). PyO3 wrappers live in the sibling kglite-py crate (the Python wheel); embeddable directly from any Rust binary without PyO3 in the dep tree.
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;