badtomcat / cache
缓存组件
v0.0.1
2017-12-20 05:59 UTC
Requires
- php: >=5.4.0
- badtomcat/filesystem: ~0.0.1
Requires (Dev)
- phpunit/phpunit: ~5.0
This package is not auto-updated.
Last update: 2024-09-29 03:47:10 UTC
README
Cache组件
##开始使用
####安装组件 使用 composer 命令进行安装或下载源代码使用。
composer require badtomcat/cache
$cache = new Badtomcat\Cache\FileCache(__DIR__."/cache"); $cache->set('key', 'taw'); $this->assertEquals($cache->get('key'), 'taw'); $cache->set('balabala', 'balabala',1); $this->assertEquals($cache->get('balabala'), 'balabala'); sleep(2); $this->assertEquals($cache->get('balabala'), null); $cache->flush();