dc/cache-memcache

0.2 2014-10-27 08:46 UTC

This package is not auto-updated.

Last update: 2024-09-14 15:12:58 UTC


README

DC\Cache - Caching interface

安装

$ composer install dc/cache-memcache

或者添加到 composer.json

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

入门

在构造时,您需要提供一个 \DC\Cache\Implementations\Memcache\MemcacheConfiguration 对象,这将为我们提供您的 memcache 会话的连接选项。

$cache = new \DC\Cache\Implementations\Memcache\Cache(
  \DC\Cache\Implementations\Memcache\MemcacheConfiguration('localhost', '2209'));

否则,按照接口使用。