kglite 0.15.13

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
17
18
//! 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 add_properties;
pub mod batch;
mod edge_props;
pub mod extend;
pub mod maintain;
pub mod set_ops;
pub mod subgraph;
pub mod subgraph_streaming;
pub mod subgraph_streaming_writer;
pub mod validation;
pub mod wal_replay;