Merge pull request #8512 from owncloud/fix-memcached-hasKey

Be more strict in checking the resultCode of memcached hasKey function

* owncloud/fix-memcached-hasKey:
  Memcached hasKey should test for success, the get can fail for other reasons.
This commit is contained in:
Andreas Fischer 2014-05-09 12:41:46 +02:00
commit bd4d315d78
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class Memcached extends Cache {
public function hasKey($key) {
self::$cache->get($this->getNamespace() . $key);
return self::$cache->getResultCode() !== \Memcached::RES_NOTFOUND;
return self::$cache->getResultCode() === \Memcached::RES_SUCCESS;
}
public function remove($key) {