3 * Object caching using Redis (http://redis.io/).
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 class RedisBagOStuff
extends BagOStuff
{
24 /** @var RedisConnectionPool */
26 /** @var Array List of server names */
29 protected $automaticFailover;
32 * Construct a RedisBagOStuff object. Parameters are:
34 * - servers: An array of server names. A server name may be a hostname,
35 * a hostname/port combination or the absolute path of a UNIX socket.
36 * If a hostname is specified but no port, the standard port number
37 * 6379 will be used. Required.
39 * - connectTimeout: The timeout for new connections, in seconds. Optional,
40 * default is 1 second.
42 * - persistent: Set this to true to allow connections to persist across
43 * multiple web requests. False by default.
45 * - password: The authentication password, will be sent to Redis in
46 * clear text. Optional, if it is unspecified, no AUTH command will be
49 * - automaticFailover: If this is false, then each key will be mapped to
50 * a single server, and if that server is down, any requests for that key
51 * will fail. If this is true, a connection failure will cause the client
52 * to immediately try the next server in the list (as determined by a
53 * consistent hashing algorithm). True by default. This has the
54 * potential to create consistency issues if a server is slow enough to
55 * flap, for example if it is in swap death.
57 function __construct( $params ) {
58 $redisConf = array( 'serializer' => 'php' );
59 foreach ( array( 'connectTimeout', 'persistent', 'password' ) as $opt ) {
60 if ( isset( $params[$opt] ) ) {
61 $redisConf[$opt] = $params[$opt];
64 $this->redisPool
= RedisConnectionPool
::singleton( $redisConf );
66 $this->servers
= $params['servers'];
67 if ( isset( $params['automaticFailover'] ) ) {
68 $this->automaticFailover
= $params['automaticFailover'];
70 $this->automaticFailover
= true;
74 public function get( $key, &$casToken = null ) {
75 wfProfileIn( __METHOD__
);
76 list( $server, $conn ) = $this->getConnection( $key );
78 wfProfileOut( __METHOD__
);
82 $result = $conn->get( $key );
83 } catch ( RedisException
$e ) {
85 $this->handleException( $server, $conn, $e );
88 $this->logRequest( 'get', $key, $server, $result );
89 wfProfileOut( __METHOD__
);
93 public function set( $key, $value, $expiry = 0 ) {
94 wfProfileIn( __METHOD__
);
95 list( $server, $conn ) = $this->getConnection( $key );
97 wfProfileOut( __METHOD__
);
100 $expiry = $this->convertToRelative( $expiry );
103 // No expiry, that is very different from zero expiry in Redis
104 $result = $conn->set( $key, $value );
106 $result = $conn->setex( $key, $expiry, $value );
108 } catch ( RedisException
$e ) {
110 $this->handleException( $server, $conn, $e );
113 $this->logRequest( 'set', $key, $server, $result );
114 wfProfileOut( __METHOD__
);
118 public function cas( $casToken, $key, $value, $expiry = 0 ) {
119 wfProfileIn( __METHOD__
);
120 list( $server, $conn ) = $this->getConnection( $key );
122 wfProfileOut( __METHOD__
);
125 $expiry = $this->convertToRelative( $expiry );
127 $conn->watch( $key );
129 if ( $this->get( $key ) !== $casToken ) {
130 wfProfileOut( __METHOD__
);
137 // No expiry, that is very different from zero expiry in Redis
138 $conn->set( $key, $value );
140 $conn->setex( $key, $expiry, $value );
143 $result = $conn->exec();
144 } catch ( RedisException
$e ) {
146 $this->handleException( $server, $conn, $e );
149 $this->logRequest( 'cas', $key, $server, $result );
150 wfProfileOut( __METHOD__
);
154 public function delete( $key, $time = 0 ) {
155 wfProfileIn( __METHOD__
);
156 list( $server, $conn ) = $this->getConnection( $key );
158 wfProfileOut( __METHOD__
);
162 $conn->delete( $key );
163 // Return true even if the key didn't exist
165 } catch ( RedisException
$e ) {
167 $this->handleException( $server, $conn, $e );
169 $this->logRequest( 'delete', $key, $server, $result );
170 wfProfileOut( __METHOD__
);
174 public function getMulti( array $keys ) {
175 wfProfileIn( __METHOD__
);
178 foreach ( $keys as $key ) {
179 list( $server, $conn ) = $this->getConnection( $key );
183 $conns[$server] = $conn;
184 $batches[$server][] = $key;
187 foreach ( $batches as $server => $batchKeys ) {
188 $conn = $conns[$server];
190 $conn->multi( Redis
::PIPELINE
);
191 foreach ( $batchKeys as $key ) {
194 $batchResult = $conn->exec();
195 if ( $batchResult === false ) {
196 $this->debug( "multi request to $server failed" );
199 foreach ( $batchResult as $i => $value ) {
200 if ( $value !== false ) {
201 $result[$batchKeys[$i]] = $value;
204 } catch ( RedisException
$e ) {
205 $this->handleException( $server, $conn, $e );
209 $this->debug( "getMulti for " . count( $keys ) . " keys " .
210 "returned " . count( $result ) . " results" );
211 wfProfileOut( __METHOD__
);
215 public function add( $key, $value, $expiry = 0 ) {
216 wfProfileIn( __METHOD__
);
217 list( $server, $conn ) = $this->getConnection( $key );
219 wfProfileOut( __METHOD__
);
222 $expiry = $this->convertToRelative( $expiry );
224 $result = $conn->setnx( $key, $value );
225 if ( $result && $expiry ) {
226 $conn->expire( $key, $expiry );
228 } catch ( RedisException
$e ) {
230 $this->handleException( $server, $conn, $e );
232 $this->logRequest( 'add', $key, $server, $result );
233 wfProfileOut( __METHOD__
);
238 * Non-atomic implementation of replace(). Could perhaps be done atomically
239 * with WATCH or scripting, but this function is rarely used.
241 public function replace( $key, $value, $expiry = 0 ) {
242 wfProfileIn( __METHOD__
);
243 list( $server, $conn ) = $this->getConnection( $key );
245 wfProfileOut( __METHOD__
);
248 if ( !$conn->exists( $key ) ) {
249 wfProfileOut( __METHOD__
);
253 $expiry = $this->convertToRelative( $expiry );
256 $result = $conn->set( $key, $value );
258 $result = $conn->setex( $key, $expiry, $value );
260 } catch ( RedisException
$e ) {
262 $this->handleException( $server, $conn, $e );
265 $this->logRequest( 'replace', $key, $server, $result );
266 wfProfileOut( __METHOD__
);
271 * Non-atomic implementation of incr().
273 * Probably all callers actually want incr() to atomically initialise
274 * values to zero if they don't exist, as provided by the Redis INCR
275 * command. But we are constrained by the memcached-like interface to
276 * return null in that case. Once the key exists, further increments are
279 public function incr( $key, $value = 1 ) {
280 wfProfileIn( __METHOD__
);
281 list( $server, $conn ) = $this->getConnection( $key );
283 wfProfileOut( __METHOD__
);
286 if ( !$conn->exists( $key ) ) {
287 wfProfileOut( __METHOD__
);
291 $result = $conn->incrBy( $key, $value );
292 } catch ( RedisException
$e ) {
294 $this->handleException( $server, $conn, $e );
297 $this->logRequest( 'incr', $key, $server, $result );
298 wfProfileOut( __METHOD__
);
303 * Get a Redis object with a connection suitable for fetching the specified key
304 * @return Array (server, RedisConnRef) or (false, false)
306 protected function getConnection( $key ) {
307 if ( count( $this->servers
) === 1 ) {
308 $candidates = $this->servers
;
310 $candidates = $this->servers
;
311 ArrayUtils
::consistentHashSort( $candidates, $key, '/' );
312 if ( !$this->automaticFailover
) {
313 $candidates = array_slice( $candidates, 0, 1 );
317 foreach ( $candidates as $server ) {
318 $conn = $this->redisPool
->getConnection( $server );
320 return array( $server, $conn );
323 return array( false, false );
329 protected function logError( $msg ) {
330 wfDebugLog( 'redis', "Redis error: $msg\n" );
334 * The redis extension throws an exception in response to various read, write
335 * and protocol errors. Sometimes it also closes the connection, sometimes
336 * not. The safest response for us is to explicitly destroy the connection
337 * object and let it be reopened during the next request.
339 protected function handleException( $server, RedisConnRef
$conn, $e ) {
340 $this->redisPool
->handleException( $server, $conn, $e );
344 * Send information about a single request to the debug log
346 public function logRequest( $method, $key, $server, $result ) {
347 $this->debug( "$method $key on $server: " .
348 ( $result === false ?
"failure" : "success" ) );