ddtraceweb / symfony-redis-session-handler
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 8
pkg:composer/ddtraceweb/symfony-redis-session-handler
Requires
- ext-redis: *
- symfony/http-foundation: >=1.0
This package is auto-updated.
Last update: 2025-10-14 04:42:00 UTC
README
This is a fork of Baachi's work
Use
use Symfony\Component\HttpFoundation\Session\Storage\Handler\RedisSessionHandler; $sessionTimeout = 60 * 60 * 24 * 7; // 1 week $redisClient = new \Redis('localhost'); new RedisSessionHandler($redisClient, $sessionTimeout);