PHP高级缓存系统:Cachearium

WBOY
Freigeben: 2016-06-23 13:34:51
Original
1281 Leute haben es durchsucht

Cachearium 是一个用于 PHP 应用的高级缓存框架,具有简单和快速的特点。

  • recursive cache system, all the nested russian dolls you ever wanted
  • easy to integrate with your existing classes
  • key based cache expiration, no more headaches to invalidate stuff
  • multiple dependencies
  • lifetime expiration, because stuff rots
  • low level cache storage access, when you want to go raw
  • lots of examples and tests ready to copy/paste
  • variable fragments for things that are almost the same but not quite
  • pluggable backend modules: RAM, Memcached, Filesystem and you can add your own
  • detailed logs for profiling and debugging, and also see what is cached live in your webpage

示例代码:

$data = 'xxxx'; // store$cache = CacheAbstract::factory('your backend');$cache->store($data, new CacheKey('Namespace', 'Subname')); // get it latertry {     $data2 = $cache->get(new CacheKey('Namespace', 'Subname'));    // $data2 == 'xxxx';}catch (NotCachedException($e)) {    // handle not cached} // store new value with automatic invalidation$data = 'yyy';$cache->store($data, new CacheKey('Namespace', 'Subname'));
Nach dem Login kopieren

项目主页:http://www.open-open.com/lib/view/home/1431394929966

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage