芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/lugarcollectibles.com/system/library/cache/mem.php
expire = $expire; $this->memcache = new \Memcache(); $this->memcache->pconnect(CACHE_HOSTNAME, CACHE_PORT); } public function get($key) { return $this->memcache->get(CACHE_PREFIX . $key); } public function set($key, $value) { return $this->memcache->set(CACHE_PREFIX . $key, $value, MEMCACHE_COMPRESSED, $this->expire); } public function delete($key) { $this->memcache->delete(CACHE_PREFIX . $key); } }