glimr_redis/session/session_store
Redis Session Store
Redis is ideal for session storage in multi-instance deployments — all app servers share the same Redis and sessions survive restarts without disk I/O. Unlike the PostgreSQL and SQLite stores, Redis handles expiration natively via key TTLs, so the GC callback is a no-op and stale sessions are evicted automatically without periodic cleanup scans.