oefenweb/cakephp-redis
最新稳定版本:v2.0.0
Composer 安装命令:
composer require oefenweb/cakephp-redis
包简介
A Redis (DataSource) Plugin for CakePHP
README 文档
README
Redis (DataSource) Plugin for CakePHP
Requirements
- CakePHP 2.9.0 or greater.
- PHP 7.0.0 or greater.
- PhpRedis.
Installation
Clone
- Clone/Copy the files in this directory into
app/Plugin/Redis
Composer
- Ensure
requireis present incomposer.json. This will install the plugin intoapp/Plugin/Redis:
{
"require": {
"oefenweb/cakephp-redis": "dev-master"
}
}
Configuration
- Ensure the plugin is loaded in
app/Config/bootstrap.phpby calling:
CakePlugin::load('Redis');
- Ensure the plugin is configured in
app/Config/database.phpby specifying:
<?php class DATABASE_CONFIG { public $redis = [ 'datasource' => 'Redis.RedisSource', 'host' => '127.0.0.1', 'port' => 6379, 'password' => '', 'database' => 0, 'timeout' => 0, 'persistent' => false, 'unix_socket' => '', 'prefix' => '', ];
Usage
Get a (connected / configured) Redis instance:
<?php App::uses('ConnectionManager', 'Model'); $Redis = ConnectionManager::getDataSource('redis');
Call Redis's ping command:
$Redis->ping();
统计信息
- 总下载量: 70.13k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-09-23