Skip to content

digitalcreations/cache-phpredis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Redis implementation for dc/cache

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages