定制 oefenweb/cakephp-redis 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

oefenweb/cakephp-redis

最新稳定版本:v2.0.0

Composer 安装命令:

composer require oefenweb/cakephp-redis

包简介

A Redis (DataSource) Plugin for CakePHP

README 文档

README

Build Status PHP 7 ready Coverage Status Packagist downloads Code Climate Scrutinizer Code Quality

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 require is present in composer.json. This will install the plugin into app/Plugin/Redis:
{
	"require": {
		"oefenweb/cakephp-redis": "dev-master"
	}
}

Configuration

  • Ensure the plugin is loaded in app/Config/bootstrap.php by calling:
CakePlugin::load('Redis');
  • Ensure the plugin is configured in app/Config/database.php by 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

GitHub 信息

  • Stars: 5
  • Watchers: 3
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-09-23