ppanphper/yii2-redis

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

Installs: 29

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

v1.0.0 2018-06-06 10:48 UTC

This package is not auto-updated.

Last update: 2024-05-04 12:14:51 UTC


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.

Latest Stable Version Total Downloads Build Status

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 ppanphper/yii2-redis

or add

"ppanphper/yii2-redis": "^1.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' => '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,
        ],


    ]
];