Expand description
SQLite index over stored traces (SPEC.md §8).
The filesystem store (super::fs::Store) is the authoritative source of
truth for trace content; this index just lets shadow answer questions
like “which traces have tag env=prod?” without scanning every file on
disk. The bundled feature of rusqlite is on, so there’s no system
sqlite3 dependency.
Structs§
- Index
- SQLite-backed trace index. Cheap to construct; use one per process or thread.
- Replay
Record - One row in the
replaystable. - Trace
Record - One row in the
tracestable (plus its tags).
Enums§
- Index
Error - Errors from
Index.
Type Aliases§
- Result
- Result alias for index operations.