kglite 0.10.21

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
//! Load / save / import / export.
//!
//! `.kgl` v3 binary saves, Cypher-result export, and N-Triples bulk load.
//! The disk-specific bulk-load internals (column builders, overflow
//! mmap) live inside `ntriples.rs` today; Stage 2.2 of Phase 7 may
//! hoist the disk-specific portion into `storage::disk::builder` once
//! the boundary is clean.

pub mod export;
pub mod file;
pub mod load_timing;
pub mod ntriples;
pub mod unified_columns;