dc/cache-memcached

dev-master 2016-01-10 10:00 UTC

This package is not auto-updated.

Last update: 2024-04-23 17:22:54 UTC


README

DC\Cache - Caching interface

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.