dc/cache-memcached

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

This package is not auto-updated.

Last update: 2024-09-24 19:11:46 UTC


README

DC\Cache - Caching interface

安装

$ composer install dc/cache-memcached

或者添加到 composer.json

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

入门

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

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

否则,按照 接口 使用。