Использовать ее в своих проектах легко и просто :)
Пример простого приложения с использованием KCache:
<?php
// include KCache
include 'kcache/kcache.class.php';
// Initialize a TCache object
$cache = new KCache();
// Change default configuration
KCache::configure('cache_dir','cache/');
// Get a key "profile" in namespace "profiles"
$profile = $cache->get('profiles','profile');
// If key "profile" dosnt exists than create it
if(!$profile) {
$profile = array('login'=>'Awilum',
'email'=>'awilum@msn.com');
$cache->put('profiles','profile',$profile);
}
// Dump profile
var_dump($profile);
?>
Скачать: KCache.zip
Комментариев нет:
Отправить комментарий