PHP缓存框架Cachearium.zip
Cachearium 是一个用于 PHP 应用的高级缓存框架。示例代码:$data = 'xxxx'; // store $cache = CacheAbstract::factory('your backend'); $cache->store($data, new CacheKey('Namespace', 'Subname')); // get it later try { $data2 = $cache->get(new CacheKey('Namespace', 'Subname')); // $data2 == 'xxxx'; } catch (NotCach
下载地址
用户评论