2013-03-17 19:01:10 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andreas Fischer <bantu@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-03-17 19:01:10 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-03-17 19:01:10 +04:00
|
|
|
namespace OC\Memcache;
|
|
|
|
|
2016-05-11 20:38:00 +03:00
|
|
|
use OC\HintException;
|
2015-04-28 16:39:38 +03:00
|
|
|
use OCP\IMemcache;
|
|
|
|
|
|
|
|
class Memcached extends Cache implements IMemcache {
|
2015-04-29 17:34:36 +03:00
|
|
|
use CASTrait;
|
|
|
|
|
2013-03-17 19:01:10 +04:00
|
|
|
/**
|
|
|
|
* @var \Memcached $cache
|
|
|
|
*/
|
|
|
|
private static $cache = null;
|
|
|
|
|
2015-06-08 16:25:23 +03:00
|
|
|
use CADTrait;
|
|
|
|
|
2013-07-16 17:42:40 +04:00
|
|
|
public function __construct($prefix = '') {
|
|
|
|
parent::__construct($prefix);
|
2013-03-17 19:01:10 +04:00
|
|
|
if (is_null(self::$cache)) {
|
|
|
|
self::$cache = new \Memcached();
|
2016-05-11 20:38:00 +03:00
|
|
|
|
|
|
|
$defaultOptions = [
|
|
|
|
\Memcached::OPT_CONNECT_TIMEOUT => 50,
|
|
|
|
\Memcached::OPT_RETRY_TIMEOUT => 50,
|
|
|
|
\Memcached::OPT_SEND_TIMEOUT => 50,
|
|
|
|
\Memcached::OPT_RECV_TIMEOUT => 50,
|
|
|
|
\Memcached::OPT_POLL_TIMEOUT => 50,
|
|
|
|
|
|
|
|
// Enable compression
|
|
|
|
\Memcached::OPT_COMPRESSION => true,
|
|
|
|
|
|
|
|
// Turn on consistent hashing
|
|
|
|
\Memcached::OPT_LIBKETAMA_COMPATIBLE => true,
|
|
|
|
|
|
|
|
// Enable Binary Protocol
|
2016-12-20 23:57:43 +03:00
|
|
|
//\Memcached::OPT_BINARY_PROTOCOL => true,
|
2016-05-11 20:38:00 +03:00
|
|
|
];
|
|
|
|
// by default enable igbinary serializer if available
|
|
|
|
if (\Memcached::HAVE_IGBINARY) {
|
|
|
|
$defaultOptions[\Memcached::OPT_SERIALIZER] =
|
|
|
|
\Memcached::SERIALIZER_IGBINARY;
|
|
|
|
}
|
|
|
|
$options = \OC::$server->getConfig()->getSystemValue('memcached_options', []);
|
|
|
|
if (is_array($options)) {
|
|
|
|
$options = $options + $defaultOptions;
|
|
|
|
self::$cache->setOptions($options);
|
|
|
|
} else {
|
|
|
|
throw new HintException("Expected 'memcached_options' config to be an array, got $options");
|
|
|
|
}
|
2016-12-09 22:46:41 +03:00
|
|
|
|
|
|
|
$servers = \OC::$server->getSystemConfig()->getValue('memcached_servers');
|
|
|
|
if (!$servers) {
|
|
|
|
$server = \OC::$server->getSystemConfig()->getValue('memcached_server');
|
|
|
|
if ($server) {
|
|
|
|
$servers = [$server];
|
|
|
|
} else {
|
|
|
|
$servers = [['localhost', 11211]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self::$cache->addServers($servers);
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* entries in XCache gets namespaced to prevent collisions between owncloud instances and users
|
|
|
|
*/
|
|
|
|
protected function getNameSpace() {
|
|
|
|
return $this->prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get($key) {
|
|
|
|
$result = self::$cache->get($this->getNamespace() . $key);
|
|
|
|
if ($result === false and self::$cache->getResultCode() == \Memcached::RES_NOTFOUND) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function set($key, $value, $ttl = 0) {
|
|
|
|
if ($ttl > 0) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->set($this->getNamespace() . $key, $value, $ttl);
|
2013-03-17 19:01:10 +04:00
|
|
|
} else {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->set($this->getNamespace() . $key, $value);
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
2016-12-12 16:51:27 +03:00
|
|
|
if ($result !== true) {
|
|
|
|
$this->verifyReturnCode();
|
|
|
|
}
|
2015-11-10 17:58:17 +03:00
|
|
|
return $result;
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function hasKey($key) {
|
|
|
|
self::$cache->get($this->getNamespace() . $key);
|
2014-05-08 20:11:29 +04:00
|
|
|
return self::$cache->getResultCode() === \Memcached::RES_SUCCESS;
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function remove($key) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result= self::$cache->delete($this->getNamespace() . $key);
|
2016-03-14 14:34:11 +03:00
|
|
|
if (self::$cache->getResultCode() !== \Memcached::RES_NOTFOUND) {
|
|
|
|
$this->verifyReturnCode();
|
|
|
|
}
|
2015-11-10 17:58:17 +03:00
|
|
|
return $result;
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function clear($prefix = '') {
|
|
|
|
$prefix = $this->getNamespace() . $prefix;
|
|
|
|
$allKeys = self::$cache->getAllKeys();
|
2015-09-05 22:02:49 +03:00
|
|
|
if ($allKeys === false) {
|
|
|
|
// newer Memcached doesn't like getAllKeys(), flush everything
|
|
|
|
self::$cache->flush();
|
|
|
|
return true;
|
|
|
|
}
|
2013-03-17 19:01:10 +04:00
|
|
|
$keys = array();
|
|
|
|
$prefixLength = strlen($prefix);
|
|
|
|
foreach ($allKeys as $key) {
|
|
|
|
if (substr($key, 0, $prefixLength) === $prefix) {
|
|
|
|
$keys[] = $key;
|
|
|
|
}
|
|
|
|
}
|
2014-12-17 20:07:08 +03:00
|
|
|
if (method_exists(self::$cache, 'deleteMulti')) {
|
|
|
|
self::$cache->deleteMulti($keys);
|
|
|
|
} else {
|
|
|
|
foreach ($keys as $key) {
|
|
|
|
self::$cache->delete($key);
|
|
|
|
}
|
|
|
|
}
|
2013-03-17 19:01:10 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-28 16:39:38 +03:00
|
|
|
/**
|
|
|
|
* Set a value in the cache if it's not already stored
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @param int $ttl Time To Live in seconds. Defaults to 60*60*24
|
|
|
|
* @return bool
|
2016-03-14 14:34:11 +03:00
|
|
|
* @throws \Exception
|
2015-04-28 16:39:38 +03:00
|
|
|
*/
|
|
|
|
public function add($key, $value, $ttl = 0) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->add($this->getPrefix() . $key, $value, $ttl);
|
2016-03-14 14:34:11 +03:00
|
|
|
if (self::$cache->getResultCode() !== \Memcached::RES_NOTSTORED) {
|
|
|
|
$this->verifyReturnCode();
|
|
|
|
}
|
2015-11-10 17:58:17 +03:00
|
|
|
return $result;
|
2015-04-28 16:39:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Increase a stored number
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param int $step
|
|
|
|
* @return int | bool
|
|
|
|
*/
|
|
|
|
public function inc($key, $step = 1) {
|
|
|
|
$this->add($key, 0);
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->increment($this->getPrefix() . $key, $step);
|
2016-03-14 14:34:11 +03:00
|
|
|
|
|
|
|
if (self::$cache->getResultCode() !== \Memcached::RES_SUCCESS) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-10 17:58:17 +03:00
|
|
|
return $result;
|
2015-04-28 16:39:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decrease a stored number
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param int $step
|
|
|
|
* @return int | bool
|
|
|
|
*/
|
|
|
|
public function dec($key, $step = 1) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->decrement($this->getPrefix() . $key, $step);
|
2016-03-14 14:34:11 +03:00
|
|
|
|
|
|
|
if (self::$cache->getResultCode() !== \Memcached::RES_SUCCESS) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-10 17:58:17 +03:00
|
|
|
return $result;
|
2015-04-28 16:39:38 +03:00
|
|
|
}
|
|
|
|
|
2013-03-17 19:01:10 +04:00
|
|
|
static public function isAvailable() {
|
|
|
|
return extension_loaded('memcached');
|
|
|
|
}
|
2015-11-10 17:58:17 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
private function verifyReturnCode() {
|
|
|
|
$code = self::$cache->getResultCode();
|
|
|
|
if ($code === \Memcached::RES_SUCCESS) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$message = self::$cache->getResultMessage();
|
|
|
|
throw new \Exception("Error $code interacting with memcached : $message");
|
|
|
|
}
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|