2017 © Pedro Peláez
 

cakephp-plugin cakephp-redis

A Redis (DataSource) Plugin for CakePHP

image

oefenweb/cakephp-redis

A Redis (DataSource) Plugin for CakePHP

  • Thursday, September 28, 2017
  • by oefenweb
  • Repository
  • 3 Watchers
  • 5 Stars
  • 29,986 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 7 Versions
  • 3 % Grown

The README.md

Redis plugin for CakePHP

Build Status PHP 7 ready Coverage Status Packagist downloads Code Climate Scrutinizer Code Quality, (*1)

Redis (DataSource) Plugin for CakePHP, (*2)

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:, (*3)

<?php
App::uses('ConnectionManager', 'Model');

$Redis = ConnectionManager::getDataSource('redis');

Call Redis's ping command:, (*4)

$Redis->ping();

The Versions

28/09 2017

dev-master

9999999-dev http://github.com/Oefenweb/cakephp-redis

A Redis (DataSource) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp redis

28/09 2017

v1.1.4

1.1.4.0 http://github.com/Oefenweb/cakephp-redis

A Redis (DataSource) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp redis

05/04 2017

v1.1.3

1.1.3.0 http://github.com/Oefenweb/cakephp-redis

A Redis (DataSource) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp redis

28/05 2016

v1.1.2

1.1.2.0 http://github.com/Oefenweb/cakephp-redis

A Redis (DataSource) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp redis

09/03 2016

v1.1.1

1.1.1.0 http://github.com/Oefenweb/cakephp-redis

A Redis (DataSource) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp redis

12/02 2016

v1.1.0

1.1.0.0 http://github.com/Oefenweb/cakephp-redis

A Redis (DataSource) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp redis

27/12 2014

v1.0.0

1.0.0.0 http://github.com/Oefenweb/cakephp-redis

A Redis (DataSource) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp redis