dc / cache-phpredis
Redis PHP extension implementation for dc/cache
dev-master
2016-12-14 09:09 UTC
Requires (Dev)
- dc/ioc: dev-master
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2024-11-09 18:59:27 UTC
README
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.