ddtraceweb / symfony-redis-session-handler
此包的最新版本(0.1)没有可用的许可信息。
0.1
2013-10-18 09:15 UTC
Requires
- ext-redis: *
- symfony/http-foundation: >=1.0
This package is auto-updated.
Last update: 2024-09-14 02:07:52 UTC
README
这是 Baachi 的作品的分支
使用
use Symfony\Component\HttpFoundation\Session\Storage\Handler\RedisSessionHandler; $sessionTimeout = 60 * 60 * 24 * 7; // 1 week $redisClient = new \Redis('localhost'); new RedisSessionHandler($redisClient, $sessionTimeout);