Expand description
SQL-backed GraphStore implementation.
SqlGraphStore stores graph edges in a regular SQLite table.
Traversal uses recursive CTEs for multi-hop queries.
§Connection strategy
- File-backed: Opens standalone connections per operation.
- In-memory: Acquires pool connections per operation via
spawn_blocking.
Structs§
- SqlGraph
Store - A GraphStore backed by SQLite tables.