kglite 0.16.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
10
11
12
13
14
15
16
//! Load / save / import / export.
//!
//! Portable `.kgl` v5 saves, Cypher-result export, and N-Triples bulk load.
//! Disk-specific bulk-load internals stay under `ntriples`, while reusable
//! storage primitives live under `storage::disk`.

pub mod export;
pub mod export_sql;
pub mod file;
pub mod load_timing;
pub(crate) mod magic;
pub mod ntriples;
pub mod open;
#[cfg(feature = "rdf")]
pub mod rdf;
pub mod unified_columns;