Вход Регистрация
Файл: upload-2031-rs1/system/library/cache/mem.php
Строк: 16
<?php
namespace Cache;
class 
Mem {
    private 
$expire;
    private 
$cache;

    public function 
__construct($expire) {
        
$this->expire $expire;

        
$this->cache = new Memcache();
        
$this->cache->pconnect(CACHE_HOSTNAMECACHE_PORT);
    }

    public function 
get($key) {
        return 
$this->cache->get(CACHE_PREFIX $key);
    }

    public function 
set($key,$value) {
        return 
$this->cache->set(CACHE_PREFIX $key$valueMEMCACHE_COMPRESSED$this->expire);
    }

    public function 
delete($key) {
        
$this->cache->delete(CACHE_PREFIX $key);
    }
}
Онлайн: 0
Реклама