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
24 * Redis-based caching module for redis server >= 2.6.12
26 * @note: avoid use of Redis::MULTI transactions for twemproxy support
28 class RedisBagOStuff
extends BagOStuff
{
29 /** @var RedisConnectionPool */
31 /** @var array List of server names */
33 /** @var array Map of (tag => server name) */
34 protected $serverTagMap;
36 protected $automaticFailover;
39 * Construct a RedisBagOStuff object. Parameters are:
41 * - servers: An array of server names. A server name may be a hostname,
42 * a hostname/port combination or the absolute path of a UNIX socket.
43 * If a hostname is specified but no port, the standard port number
44 * 6379 will be used. Arrays keys can be used to specify the tag to
45 * hash on in place of the host/port. Required.
47 * - connectTimeout: The timeout for new connections, in seconds. Optional,
48 * default is 1 second.
50 * - persistent: Set this to true to allow connections to persist across
51 * multiple web requests. False by default.
53 * - password: The authentication password, will be sent to Redis in
54 * clear text. Optional, if it is unspecified, no AUTH command will be
57 * - automaticFailover: If this is false, then each key will be mapped to
58 * a single server, and if that server is down, any requests for that key
59 * will fail. If this is true, a connection failure will cause the client
60 * to immediately try the next server in the list (as determined by a
61 * consistent hashing algorithm). True by default. This has the
62 * potential to create consistency issues if a server is slow enough to
63 * flap, for example if it is in swap death.
64 * @param array $params
66 function __construct( $params ) {
67 parent
::__construct( $params );
68 $redisConf = array( 'serializer' => 'none' ); // manage that in this class
69 foreach ( array( 'connectTimeout', 'persistent', 'password' ) as $opt ) {
70 if ( isset( $params[$opt] ) ) {
71 $redisConf[$opt] = $params[$opt];
74 $this->redisPool
= RedisConnectionPool
::singleton( $redisConf );
76 $this->servers
= $params['servers'];
77 foreach ( $this->servers
as $key => $server ) {
78 $this->serverTagMap
[is_int( $key ) ?
$server : $key] = $server;
81 if ( isset( $params['automaticFailover'] ) ) {
82 $this->automaticFailover
= $params['automaticFailover'];
84 $this->automaticFailover
= true;
88 protected function doGet( $key, $flags = 0 ) {
89 list( $server, $conn ) = $this->getConnection( $key );
94 $value = $conn->get( $key );
95 $result = $this->unserialize( $value );
96 } catch ( RedisException
$e ) {
98 $this->handleException( $conn, $e );
101 $this->logRequest( 'get', $key, $server, $result );
105 public function set( $key, $value, $expiry = 0, $flags = 0 ) {
106 list( $server, $conn ) = $this->getConnection( $key );
110 $expiry = $this->convertToRelative( $expiry );
113 $result = $conn->setex( $key, $expiry, $this->serialize( $value ) );
115 // No expiry, that is very different from zero expiry in Redis
116 $result = $conn->set( $key, $this->serialize( $value ) );
118 } catch ( RedisException
$e ) {
120 $this->handleException( $conn, $e );
123 $this->logRequest( 'set', $key, $server, $result );
127 public function delete( $key ) {
128 list( $server, $conn ) = $this->getConnection( $key );
133 $conn->delete( $key );
134 // Return true even if the key didn't exist
136 } catch ( RedisException
$e ) {
138 $this->handleException( $conn, $e );
141 $this->logRequest( 'delete', $key, $server, $result );
145 public function getMulti( array $keys, $flags = 0 ) {
148 foreach ( $keys as $key ) {
149 list( $server, $conn ) = $this->getConnection( $key );
153 $conns[$server] = $conn;
154 $batches[$server][] = $key;
157 foreach ( $batches as $server => $batchKeys ) {
158 $conn = $conns[$server];
160 $conn->multi( Redis
::PIPELINE
);
161 foreach ( $batchKeys as $key ) {
164 $batchResult = $conn->exec();
165 if ( $batchResult === false ) {
166 $this->debug( "multi request to $server failed" );
169 foreach ( $batchResult as $i => $value ) {
170 if ( $value !== false ) {
171 $result[$batchKeys[$i]] = $this->unserialize( $value );
174 } catch ( RedisException
$e ) {
175 $this->handleException( $conn, $e );
179 $this->debug( "getMulti for " . count( $keys ) . " keys " .
180 "returned " . count( $result ) . " results" );
189 public function setMulti( array $data, $expiry = 0 ) {
192 foreach ( $data as $key => $value ) {
193 list( $server, $conn ) = $this->getConnection( $key );
197 $conns[$server] = $conn;
198 $batches[$server][] = $key;
201 $expiry = $this->convertToRelative( $expiry );
203 foreach ( $batches as $server => $batchKeys ) {
204 $conn = $conns[$server];
206 $conn->multi( Redis
::PIPELINE
);
207 foreach ( $batchKeys as $key ) {
209 $conn->setex( $key, $expiry, $this->serialize( $data[$key] ) );
211 $conn->set( $key, $this->serialize( $data[$key] ) );
214 $batchResult = $conn->exec();
215 if ( $batchResult === false ) {
216 $this->debug( "setMulti request to $server failed" );
219 foreach ( $batchResult as $value ) {
220 if ( $value === false ) {
224 } catch ( RedisException
$e ) {
225 $this->handleException( $server, $conn, $e );
233 public function add( $key, $value, $expiry = 0 ) {
234 list( $server, $conn ) = $this->getConnection( $key );
238 $expiry = $this->convertToRelative( $expiry );
241 $result = $conn->set(
243 $this->serialize( $value ),
244 array( 'nx', 'ex' => $expiry )
247 $result = $conn->setnx( $key, $this->serialize( $value ) );
249 } catch ( RedisException
$e ) {
251 $this->handleException( $conn, $e );
254 $this->logRequest( 'add', $key, $server, $result );
259 * Non-atomic implementation of incr().
261 * Probably all callers actually want incr() to atomically initialise
262 * values to zero if they don't exist, as provided by the Redis INCR
263 * command. But we are constrained by the memcached-like interface to
264 * return null in that case. Once the key exists, further increments are
266 * @param string $key Key to increase
267 * @param int $value Value to add to $key (Default 1)
268 * @return int|bool New value or false on failure
270 public function incr( $key, $value = 1 ) {
271 list( $server, $conn ) = $this->getConnection( $key );
275 if ( !$conn->exists( $key ) ) {
279 // @FIXME: on races, the key may have a 0 TTL
280 $result = $conn->incrBy( $key, $value );
281 } catch ( RedisException
$e ) {
283 $this->handleException( $conn, $e );
286 $this->logRequest( 'incr', $key, $server, $result );
290 public function modifySimpleRelayEvent( array $event ) {
291 if ( array_key_exists( 'val', $event ) ) {
292 $event['val'] = serialize( $event['val'] ); // this class uses PHP serialization
302 protected function serialize( $data ) {
303 // Serialize anything but integers so INCR/DECR work
304 // Do not store integer-like strings as integers to avoid type confusion (bug 60563)
305 return is_int( $data ) ?
$data : serialize( $data );
309 * @param string $data
312 protected function unserialize( $data ) {
313 return ctype_digit( $data ) ?
intval( $data ) : unserialize( $data );
317 * Get a Redis object with a connection suitable for fetching the specified key
319 * @return array (server, RedisConnRef) or (false, false)
321 protected function getConnection( $key ) {
322 $candidates = array_keys( $this->serverTagMap
);
324 if ( count( $this->servers
) > 1 ) {
325 ArrayUtils
::consistentHashSort( $candidates, $key, '/' );
326 if ( !$this->automaticFailover
) {
327 $candidates = array_slice( $candidates, 0, 1 );
331 while ( ( $tag = array_shift( $candidates ) ) !== null ) {
332 $server = $this->serverTagMap
[$tag];
333 $conn = $this->redisPool
->getConnection( $server );
338 // If automatic failover is enabled, check that the server's link
339 // to its master (if any) is up -- but only if there are other
340 // viable candidates left to consider. Also, getMasterLinkStatus()
341 // does not work with twemproxy, though $candidates will be empty
342 // by now in such cases.
343 if ( $this->automaticFailover
&& $candidates ) {
345 if ( $this->getMasterLinkStatus( $conn ) === 'down' ) {
346 // If the master cannot be reached, fail-over to the next server.
347 // If masters are in data-center A, and slaves in data-center B,
348 // this helps avoid the case were fail-over happens in A but not
349 // to the corresponding server in B (e.g. read/write mismatch).
352 } catch ( RedisException
$e ) {
353 // Server is not accepting commands
354 $this->handleException( $conn, $e );
359 return array( $server, $conn );
362 $this->setLastError( BagOStuff
::ERR_UNREACHABLE
);
364 return array( false, false );
368 * Check the master link status of a Redis server that is configured as a slave.
369 * @param RedisConnRef $conn
370 * @return string|null Master link status (either 'up' or 'down'), or null
371 * if the server is not a slave.
373 protected function getMasterLinkStatus( RedisConnRef
$conn ) {
374 $info = $conn->info();
375 return isset( $info['master_link_status'] )
376 ?
$info['master_link_status']
384 protected function logError( $msg ) {
385 $this->logger
->error( "Redis error: $msg" );
389 * The redis extension throws an exception in response to various read, write
390 * and protocol errors. Sometimes it also closes the connection, sometimes
391 * not. The safest response for us is to explicitly destroy the connection
392 * object and let it be reopened during the next request.
393 * @param RedisConnRef $conn
394 * @param Exception $e
396 protected function handleException( RedisConnRef
$conn, $e ) {
397 $this->setLastError( BagOStuff
::ERR_UNEXPECTED
);
398 $this->redisPool
->handleError( $conn, $e );
402 * Send information about a single request to the debug log
403 * @param string $method
405 * @param string $server
406 * @param bool $result
408 public function logRequest( $method, $key, $server, $result ) {
409 $this->debug( "$method $key on $server: " .
410 ( $result === false ?
"failure" : "success" ) );