lucid / cache
缓存库
v0.0.1
2015-12-22 10:09 UTC
Requires
- php: >=5.6.0
- lucid/common: dev-master
Requires (Dev)
- phpunit/phpunit: 5.2.*@dev
This package is not auto-updated.
Last update: 2024-09-24 18:48:35 UTC
README
需求
php >= 5.6
安装
$ composer require lucid/cache
使用存储
<?php use Lucid\Cache\Storage; use Lucid\Cache\Client\Filesystem; $cache = new Storate(new Filesystem('app/caches')); $cache->set('id', 'value'); $cache->get('id'); // 'value'
包含的客户端
APCu
文件系统
内存中
Redis
Memcached
Memcache (php < 7.0)
XCache