kglite 0.10.17

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
//! Heap-resident storage backend.
//!
//! `MemoryGraph` (defined in `storage::mod`) wraps a petgraph
//! `StableDiGraph` with heap-backed columnar property storage. This
//! subdir owns the columnar machinery and build pipeline used by
//! both `MemoryGraph` and `MappedGraph` (they share the columnar
//! internals today; the struct types diverge in the trait layer).

pub mod property_log;