phpfluent/cache
最新稳定版本:1.0.3
Composer 安装命令:
composer require phpfluent/cache
包简介
A conventional project tool for PHP and git.
README 文档
README
A fluent cache library for PHP built on the shoulders of Doctrine\Cache.
Installation
Package is available on Packagist, you can install it using Composer.
composer require phpfluent/cache
Usage
use PHPFluent\Cache\Cache; /** * @var Doctrine\Common\Cache\Cache $doctrine */ $doctrine; $cache = new Cache($doctrine); $cache['foo'] = 'bar'; //Caching the information echo isset($cache['foo']); echo $cache['foo']; unset($cache['foo']);//Deleting the cache
统计信息
- 总下载量: 47
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 14
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2013-02-25