2017 © Pedro Peláez
 

yii2-extension yii2-redis

Redis 3.x Cluster Cache, Session and ActiveRecord for the Yii framework

image

ppanphper/yii2-redis

Redis 3.x Cluster Cache, Session and ActiveRecord for the Yii framework

  • Wednesday, June 6, 2018
  • by ppanphper
  • Repository
  • 1 Watchers
  • 0 Stars
  • 11 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 175 % Grown

The README.md

Redis 3.x Cluster Cache, Session and ActiveRecord for Yii 2

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., (*1)

For license information check the LICENSE-file., (*2)

Latest Stable Version Total Downloads Build Status, (*3)

Requirements

At least redis version 3.0 is required for all components to work properly., (*4)

Installation

The preferred way to install this extension is through composer., (*5)

Either run, (*6)

php composer.phar require --prefer-dist ppanphper/yii2-redis

or add, (*7)

"ppanphper/yii2-redis": "^1.0.0"

to the require section of your composer.json., (*8)

Configuration

To use this extension, you have to configure the Connection class in your application configuration:, (*9)

return [
    //....
    'components' => [
        'redis' => [
            'class' => 'ppanphper\redis\Connection',
            'servers' => [
                '10.155.20.169:6379',
                '10.155.20.167:6391',
                '10.155.20.168:6379',
                '10.155.20.167:6380',
//                'localhost:6379',
            ],
            'prefix' => '',
            'database' => 0,
        ],


    ]
];

The Versions

06/06 2018

dev-master

9999999-dev

Redis 3.x Cluster Cache, Session and ActiveRecord for the Yii framework

  Sources   Download

BSD-3-Clause

The Requires

 

by Avatar ppanphper

06/06 2018

v1.0.0

1.0.0.0

Redis 3.x Cluster Cache, Session and ActiveRecord for the Yii framework

  Sources   Download

BSD-3-Clause

The Requires

 

by Avatar ppanphper

24/05 2018

v1.0.1

1.0.1.0

Redis 3.x Cluster Cache, Session and ActiveRecord for the Yii framework

  Sources   Download

BSD-3-Clause

The Requires

 

by Avatar ppanphper