Expand description
SQLite-backed session persistence.
Stores sessions in a dedicated _pylon_sessions table so users don’t
get logged out when the server restarts.
The schema is intentionally minimal and under-engineered: every session
mutation is a single UPSERT/DELETE. Reads happen only at startup via
load_all. If session-churn ever outgrows this, sharding/indexing can
come later without changing the trait contract.
Structs§
- Sqlite
Session Backend - Persistent session backend backed by a SQLite connection.