badtomcat / cache
缓存组件
Installs: 61
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.4.0
- badtomcat/filesystem: ~0.0.1
Requires (Dev)
- phpunit/phpunit: ~5.0
This package is not auto-updated.
Last update: 2025-06-22 06:56:28 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();