Skip to main content

Crate tea_session_sqlite

Crate tea_session_sqlite 

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

SqliteSessionStore
Durable SQLite session store implementing SessionStore.

Enums§

SqliteSessionError
Bounded failure returned by the SQLite session store.