heyanlong/yii2-redis
最新稳定版本:2.0.4
Composer 安装命令:
composer require heyanlong/yii2-redis
包简介
Redis 3.x Cluster Cache, Session and ActiveRecord for the Yii framework
README 文档
README
This extension provides the redis key-value store support for the Yii framework 2.0.
It includes a Cache and Session storage handler and implements the ActiveRecord pattern that allows
you to store active records in redis.
For license information check the LICENSE-file.
Requirements
At least redis version 3.0 is required for all components to work properly.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist heyanlong/yii2-redis
or add
"heyanlong/yii2-redis": "~2.0.0"
to the require section of your composer.json.
Configuration
To use this extension, you have to configure the Connection class in your application configuration:
return [ //.... 'components' => [ 'redis' => [ 'class' => 'heyanlong\redis\Connection', 'master' => [ '10.155.20.169:6379', '10.155.20.167:6391', '10.155.20.168:6379', '10.155.20.167:6380', // 'localhost:6379', ], 'database' => 0, ], ] ];
统计信息
- 总下载量: 22.57k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-05-21