Name Last Update
..
Ssdb Loading commit data...
CacheInterface.php Loading commit data...
CacheRedis.php Loading commit data...
CacheSSDB.php Loading commit data...
FileCache.php Loading commit data...
Memcache.php Loading commit data...
Memcached.php Loading commit data...
README.md Loading commit data...

#File 缓存路径配置在cache.config.ini里面,如果config里面不设置路径的话使用系统默认的临时文件路径 [file] cache=/tmp/yoho $file = Cache::File();

[file]
cache.path = /tmp/yoho
$file = Cache::File('path');

[file]
fileCache.path = /tmp/yoho
$file = Cache::File('path','fileCache');

实现了get、set、del 等方法
$file = Cache::File('path','cache');
$file->set('a', '00');
$file->get('a');