sqlitegraph 2.0.7

Embedded graph database with full ACID transactions, HNSW vector search, dual backend support, and comprehensive graph algorithms library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Edge clustering primitives for the V2 storage kernel.
//!
//! This module is intentionally split into small components to keep each file
//! below the 300‑line architectural limit. Public consumers should import
//! items from this `mod.rs` re-export rather than submodules directly.

pub mod cache;
pub mod cluster;
mod cluster_serialization;
pub mod cluster_trace;
pub mod compact_record;
mod record_ext;

pub use cache::{CacheEntry, CacheKey, ThreadSafeCache, TraversalAwareCache};
pub use cluster::{DecompressEdgeIterator, EdgeCluster};
pub use cluster_trace::{Direction, StrictModeGuard, TraceContext, TraceGuard};
pub use compact_record::{CompactEdgeRecord, DeltaEncodedEdge, PackedEdgeHeader};
pub use record_ext::EdgeRecordCompactExt;