kglite 0.10.8

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
10
11
12
13
14
//! Write / maintenance / validation operations.
//!
//! Batch add/update, vacuum/maintenance, schema validation, set ops,
//! and subgraph extraction. These are the mutation side of the graph —
//! everything that changes state, plus the maintenance helpers that
//! keep storage caches coherent.

pub mod batch;
pub mod maintain;
pub mod set_ops;
pub mod subgraph;
pub mod subgraph_streaming;
pub mod subgraph_streaming_writer;
pub mod validation;