glimr_postgres/session/session_store

PostgreSQL Session Store

File-based sessions don’t survive container restarts and cookie sessions are limited to ~4KB. PostgreSQL gives durable, scalable session storage that works across multiple app instances sharing the same database. Sessions are stored as JSON payloads with a last_activity timestamp so expiration is checked on read and stale rows are cleaned up by GC without parsing the payload.

Search Document