Контакты
email:
skype:
© 2008 – 2021
Вернуться
» » » cachearium - продвинутая система кэширования на PHP

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 (NotCachedException($e)) {
    // handle not cached
}

// store new value with automatic invalidation
$data = 'yyy';
$cache->store($data, new CacheKey('Namespace', 'Subname'));

https://github.com/Corollarium/cachearium
Оставить комментарий
Вверх