Skip to main content

Module graph

Module graph 

Source
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§

SqlGraphStore
A GraphStore backed by SQLite tables.