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.
remotes/origin/ldap_group_count
Andreas Fischer 11 years ago
commit bd4d315d78
  1. 2
      lib/private/memcache/memcached.php

@ -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) {

Loading…
Cancel
Save