dc / cache-memcache
缓存接口
0.2
2014-10-27 08:46 UTC
Requires
- ext-memcache: *
- dc/cache: 0.*
This package is not auto-updated.
Last update: 2024-09-14 15:12:58 UTC
README
安装
$ 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'));
否则,按照接口使用。