cuephp/cache
最新稳定版本:0.2.0
Composer 安装命令:
composer require cuephp/cache
包简介
a light weight cache lib
README 文档
README
Suport Storage Engine
- InMemory
- File
- Memcached
- Redis
- Yac
Instanll
compose require cuephp/cache
Cache Usage
use CuePhp\Cache\Engine\InMemoryEngine; use CuePhp\Cache\Config\InMemoryConfig; $config = new InMemoryConfig; $engine = new InMemoryEngine( $config ); $engine->set( 'key', 'value', 10 ); $item = $engine->get('key'); $item->getData(); // return 'value'
Counter Usage
use CuePhp\Cache\Engine\InMemoryEngine; use CuePhp\Cache\Config\InMemoryConfig; $config = new InMemoryConfig; $engine = new InMemoryEngine( $config ); $incrCounter= $engine->incr( 'key' ); $value = $incrCounter->getData(); //return 1 if 'key' not exist $incrCount = $engine->incr('key', 10); $value = $incrCounter->getData(); //return 11
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-11-30