library symfony-redis-session-handler
ddtraceweb/symfony-redis-session-handler
- Friday, October 18, 2013
- by ddtraceweb
- Repository
- 1 Watchers
- 0 Stars
- 5 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 6 Forks
- 0 Open issues
- 2 Versions
- 0 % Grown
Symfony2 Redis Session Handler
This is a fork of Baachi's work, (*1)
Use
use Symfony\Component\HttpFoundation\Session\Storage\Handler\RedisSessionHandler;
$sessionTimeout = 60 * 60 * 24 * 7; // 1 week
$redisClient = new \Redis('localhost');
new RedisSessionHandler($redisClient, $sessionTimeout);