dc / cache-memcached
Cache interface
dev-master
2016-01-10 10:00 UTC
Requires
- ext-memcached: *
- dc/cache: >=0.2
This package is not auto-updated.
Last update: 2024-11-05 19:55:35 UTC
README
Installation
$ composer install dc/cache-memcached
Or add it to composer.json
:
"require": { "dc/cache-memcached": "0.*", }
$ composer install
Getting started
You'll need to provide a \DC\Cache\Implementations\Memcache\MemcacheConfiguration
object when constructing, that will give us the connection options for your memcached session:
$cache = new \DC\Cache\Implementations\Memcached\Cache( \DC\Cache\Implementations\Memcached\MemcacheConfiguration('localhost', '2209'));
Otherwise, use it according to the interface.