snakano/cache-store
Composer 安装命令:
composer require snakano/cache-store
包简介
provides a generic way to cache any data
关键字:
README 文档
README
provides a generic way to cache any data.
- It provide common interface for cache library.
- support cache library APC, memcached and Redis.
- support namespace. (use namespace delete)
Install
using Composer(recommended):
{ "require": { "snakano/cache-store": "1.*" } }
or cloning this repository.
Usage
// configure cache setting. Domino\CacheStore\Factory::setOptions( array( array( 'storage' => 'apc' 'default_ttl' => 360 ), array( 'storage' => 'memcached', 'prefix' => 'domino_test', 'default_ttl' => 360, 'servers' => array( array('server1', 11211, 20), array('server2', 11211, 80) ) ), array( 'storage' => 'redis', 'prefix' => 'domino_test', 'host' => '127.0.0.1', 'port' => 6379, 'default_ttl' => 360 ) ) ); // factory cache storage $storage = Domino\CacheStore\Factory::factory('memcached'); // register custom cache storage $storage = Domino\CacheStore\Factory::registerStorage('acme_storage', 'Acme\Storage\AcmeStorage'); // set data $storage->set('ns1', 'key1', 'value1'); $storage->set('ns1', 'key2', 'value2'); $storage->set('ns2', 'key1', 'value1'); $storage->set('ns2', 'key2', 'value2', 10); // specify ttl // get data $storage->get('ns1', 'key1'); # => 'value1' // delete by namespace and key $storage->clear("ns1", 'key1'); $storage->get('ns1', 'key1'); # => null // delete by namespace $storage->clearByNamespace('ns1'); $storage->get('ns1', 'key2'); # => null $storage->get('ns2', 'key1'); # => 'value1' // delete all $storage->clearAll(); $storage->get('ns2', 'key1'); # => null // disable caching at runtime Domino\CacheStore\Factory::disableCaching(); // since caching is disabled, the factory will return an instance of "NoCache" $storage = Domino\CacheStore\Factory::factory('memcached'); // enable caching at runtime Domino\CacheStore\Factory::enableCaching(); // since caching is enabled again, the factory will return an instance of "Memcached" $storage = Domino\CacheStore\Factory::factory('memcached');
License
MIT license.
统计信息
- 总下载量: 54.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-01-31