Cachearium は、PHP アプリケーション用の高レベルの保存フレームであり、単一性と高速性を備えた特徴を持っています。
キーベースのキャッシュの有効期限に基づいて、ものを無効にするための頭痛の種はもうありません
$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'));