Redis-backed session store with optional TTL-based expiration.
const store = new RedisSessionStore({ client: redis, ttlSeconds: 3600,}); Copy
const store = new RedisSessionStore({ client: redis, ttlSeconds: 3600,});
Optional
Redis-backed session store with optional TTL-based expiration.
Example