Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 595 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 595 Bytes

DC\Cache - Caching interface

Installation

$ composer require dc/cache-phpredis

Or add it to composer.json:

"require": {
	"dc/cache-phpredis": "0.*",
}
$ composer install

Getting started

Provide either a \Redis connection or a hostname and port.

$cache = new \DC\Cache\Implementations\Redis\Cache('127.0.0.1', 6379);
// or
$redis = new \Redis();
$redis->connect('127.0.0.1');
$cache = new \DC\Cache\Implementations\Redis\Cache($redis);

Otherwise, use it according to the interface.