yum install memcached
yum install php-pecl-memcache
apachectl restart
$mkey = 'song_'.$s['id'];
$memcache = new Memcache;
$memcache->connect('localhost', 11211);
$rez = $memcache->get($mkey);
if (!$rez) {
$memcache->set($mkey, 'sdsadasd', MEMCACHE_COMPRESSED, 60*60*24);
}
Komentarų nėra:
Rašyti komentarą