2012-06-05 21:58:30 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2013-03-17 19:00:39 +04:00
|
|
|
namespace OC\Memcache;
|
|
|
|
|
2013-08-15 05:37:59 +04:00
|
|
|
/**
|
|
|
|
* See http://xcache.lighttpd.net/wiki/XcacheApi for provided constants and
|
|
|
|
* functions etc.
|
|
|
|
*/
|
2013-03-17 19:00:39 +04:00
|
|
|
class XCache extends Cache {
|
2012-06-05 21:58:30 +04:00
|
|
|
/**
|
2013-08-10 00:14:28 +04:00
|
|
|
* entries in XCache gets namespaced to prevent collisions between ownCloud instances and users
|
2012-06-05 21:58:30 +04:00
|
|
|
*/
|
|
|
|
protected function getNameSpace() {
|
2012-06-25 19:42:50 +04:00
|
|
|
return $this->prefix;
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function get($key) {
|
|
|
|
return xcache_get($this->getNamespace().$key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function set($key, $value, $ttl=0) {
|
2012-09-07 17:22:01 +04:00
|
|
|
if($ttl>0) {
|
2012-09-10 13:26:20 +04:00
|
|
|
return xcache_set($this->getNamespace().$key, $value, $ttl);
|
2012-06-05 21:58:30 +04:00
|
|
|
}else{
|
2012-09-10 13:26:20 +04:00
|
|
|
return xcache_set($this->getNamespace().$key, $value);
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-05 22:54:07 +04:00
|
|
|
public function hasKey($key) {
|
|
|
|
return xcache_isset($this->getNamespace().$key);
|
|
|
|
}
|
|
|
|
|
2012-06-05 21:58:30 +04:00
|
|
|
public function remove($key) {
|
|
|
|
return xcache_unset($this->getNamespace().$key);
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function clear($prefix='') {
|
2013-08-15 05:31:42 +04:00
|
|
|
if (function_exists('xcache_unset_by_prefix')) {
|
2013-08-15 05:36:42 +04:00
|
|
|
return xcache_unset_by_prefix($this->getNamespace().$prefix);
|
2013-08-15 05:31:42 +04:00
|
|
|
} else {
|
|
|
|
// Since we can not clear by prefix, we just clear the whole cache.
|
|
|
|
xcache_clear_cache(\XC_TYPE_VAR, 0);
|
|
|
|
}
|
2012-07-22 04:31:43 +04:00
|
|
|
return true;
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
2013-03-17 19:00:39 +04:00
|
|
|
|
|
|
|
static public function isAvailable(){
|
|
|
|
if (!extension_loaded('xcache')) {
|
|
|
|
return false;
|
2013-08-10 00:14:28 +04:00
|
|
|
}
|
|
|
|
if (\OC::$CLI) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-15 05:34:43 +04:00
|
|
|
if (!function_exists('xcache_unset_by_prefix') && ini_get('xcache.admin.enable_auth')) {
|
2013-08-15 05:40:02 +04:00
|
|
|
// We do not want to use XCache if we can not clear it without
|
2013-08-15 05:34:43 +04:00
|
|
|
// using the administration function xcache_clear_cache()
|
|
|
|
// AND administration functions are password-protected.
|
2013-03-17 19:00:39 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-12-17 05:20:00 +04:00
|
|
|
$var_size = (int) ini_get('xcache.var_size');
|
|
|
|
if (!$var_size) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-10 00:14:28 +04:00
|
|
|
return true;
|
2013-03-17 19:00:39 +04:00
|
|
|
}
|
|
|
|
}
|