echosong/redis-session
最新稳定版本:1.0
Composer 安装命令:
composer require echosong/redis-session
包简介
An simple Redis session handler
README 文档
README
Download and install
install php extension for redis http://pecl.php.net/package/redis
Composer package
composer require echosong/redis-session
Basic Usage
```php
$config =[
'host'=>'127.0.0.1',
'port'=> 6379,
'timeout'=>2,
'auth'=>'****',
'database'=>2,
'prefix' => 'redis_session:'
]
session_set_save_handler(new \Echosong\RedisSession\RedisSessionHandler($config), true);
session_start();
$_SESSION['user']= "admin";
```
统计信息
- 总下载量: 306
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-08-17