X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fobjectcache%2FRedisBagOStuff.php;h=ae8cc5b70b88361c0e614a3dd52f85b67e716bfa;hb=9079f55f69724f45374cfbf41fc2261808ff95bd;hp=825c77b1e61653cc19f44c5f4714668fa521b82c;hpb=eb0a3b78300cd1de8276a76f9b7ee11e6a60e226;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/objectcache/RedisBagOStuff.php b/includes/objectcache/RedisBagOStuff.php index 825c77b1e6..ae8cc5b70b 100644 --- a/includes/objectcache/RedisBagOStuff.php +++ b/includes/objectcache/RedisBagOStuff.php @@ -298,9 +298,9 @@ class RedisBagOStuff extends BagOStuff { * command. But we are constrained by the memcached-like interface to * return null in that case. Once the key exists, further increments are * atomic. - * @param string $key - * @param int $value - * @param bool|mixed + * @param string $key Key to increase + * @param int $value Value to add to $key (Default 1) + * @return int|bool New value or false on failure */ public function incr( $key, $value = 1 ) { $section = new ProfileSection( __METHOD__ ); @@ -313,7 +313,7 @@ class RedisBagOStuff extends BagOStuff { return null; } try { - $result = $this->unserialize( $conn->incrBy( $key, $value ) ); + $result = $conn->incrBy( $key, $value ); } catch ( RedisException $e ) { $result = false; $this->handleException( $conn, $e ); @@ -342,6 +342,7 @@ class RedisBagOStuff extends BagOStuff { /** * Get a Redis object with a connection suitable for fetching the specified key + * @param string $key * @return array (server, RedisConnRef) or (false, false) */ protected function getConnection( $key ) {