Expand description
Durable SQLite session store for tea-rs.
Implements tea_session::SessionStore over a versioned,
append-only SQLite event log. Reuses the shared apply_transaction engine
so its observable behavior matches the in-memory reference store exactly.
§Example
use tea_session_sqlite::SqliteSessionStore;
let store = SqliteSessionStore::open("agents.sqlite")?;Structs§
- Sqlite
Session Store - Durable
SQLitesession store implementingSessionStore.
Enums§
- Sqlite
Session Error - Bounded failure returned by the
SQLitesession store.