diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-14 12:34:11 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-14 12:39:34 +0100 |
commit | 2f67aa9bc41df280c9ac869b0387710eb3995ed1 (patch) | |
tree | 2b67fa1693f94b58af94d4e9e4ea91c15ab4e787 /lib/private/memcache | |
parent | e0998c27ff205566db7799dce177192d2b776bc1 (diff) | |
download | nextcloud-server-2f67aa9bc41df280c9ac869b0387710eb3995ed1.tar.gz nextcloud-server-2f67aa9bc41df280c9ac869b0387710eb3995ed1.zip |
Fix errors in memcached implementation
Diffstat (limited to 'lib/private/memcache')
-rw-r--r-- | lib/private/memcache/memcached.php | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/lib/private/memcache/memcached.php b/lib/private/memcache/memcached.php index c13be68b47f..a30f9da7ed7 100644 --- a/lib/private/memcache/memcached.php +++ b/lib/private/memcache/memcached.php @@ -88,7 +88,9 @@ class Memcached extends Cache implements IMemcache { public function remove($key) { $result= self::$cache->delete($this->getNamespace() . $key); - $this->verifyReturnCode(); + if (self::$cache->getResultCode() !== \Memcached::RES_NOTFOUND) { + $this->verifyReturnCode(); + } return $result; } @@ -124,10 +126,13 @@ class Memcached extends Cache implements IMemcache { * @param mixed $value * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 * @return bool + * @throws \Exception */ public function add($key, $value, $ttl = 0) { $result = self::$cache->add($this->getPrefix() . $key, $value, $ttl); - $this->verifyReturnCode(); + if (self::$cache->getResultCode() !== \Memcached::RES_NOTSTORED) { + $this->verifyReturnCode(); + } return $result; } @@ -141,7 +146,11 @@ class Memcached extends Cache implements IMemcache { public function inc($key, $step = 1) { $this->add($key, 0); $result = self::$cache->increment($this->getPrefix() . $key, $step); - $this->verifyReturnCode(); + + if (self::$cache->getResultCode() !== \Memcached::RES_SUCCESS) { + return false; + } + return $result; } @@ -154,7 +163,11 @@ class Memcached extends Cache implements IMemcache { */ public function dec($key, $step = 1) { $result = self::$cache->decrement($this->getPrefix() . $key, $step); - $this->verifyReturnCode(); + + if (self::$cache->getResultCode() !== \Memcached::RES_SUCCESS) { + return false; + } + return $result; } |