Merge "Special:EditWatchlist/raw now make use of GenderCache"
[lhc/web/wiklou.git] / includes / objectcache / MemcachedPeclBagOStuff.php
1 <?php
2 /**
3 * Object caching using memcached.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Cache
22 */
23
24 /**
25 * A wrapper class for the PECL memcached client
26 *
27 * @ingroup Cache
28 */
29 class MemcachedPeclBagOStuff extends MemcachedBagOStuff {
30
31 /**
32 * Constructor
33 *
34 * Available parameters are:
35 * - servers: The list of IP:port combinations holding the memcached servers.
36 * - persistent: Whether to use a persistent connection
37 * - compress_threshold: The minimum size an object must be before it is compressed
38 * - timeout: The read timeout in microseconds
39 * - connect_timeout: The connect timeout in seconds
40 * - serializer: May be either "php" or "igbinary". Igbinary produces more compact
41 * values, but serialization is much slower unless the php.ini option
42 * igbinary.compact_strings is off.
43 */
44 function __construct( $params ) {
45 $params = $this->applyDefaultParams( $params );
46
47 if ( $params['persistent'] ) {
48 // The pool ID must be unique to the server/option combination.
49 // The Memcached object is essentially shared for each pool ID.
50 // We can only resuse a pool ID if we keep the config consistent.
51 $this->client = new Memcached( md5( serialize( $params ) ) );
52 if ( count( $this->client->getServerList() ) ) {
53 wfDebug( __METHOD__ . ": persistent Memcached object already loaded.\n" );
54 return; // already initialized; don't add duplicate servers
55 }
56 } else {
57 $this->client = new Memcached;
58 }
59
60 if ( !isset( $params['serializer'] ) ) {
61 $params['serializer'] = 'php';
62 }
63
64 // The compression threshold is an undocumented php.ini option for some
65 // reason. There's probably not much harm in setting it globally, for
66 // compatibility with the settings for the PHP client.
67 ini_set( 'memcached.compression_threshold', $params['compress_threshold'] );
68
69 // Set timeouts
70 $this->client->setOption( Memcached::OPT_CONNECT_TIMEOUT, $params['connect_timeout'] * 1000 );
71 $this->client->setOption( Memcached::OPT_SEND_TIMEOUT, $params['timeout'] );
72 $this->client->setOption( Memcached::OPT_RECV_TIMEOUT, $params['timeout'] );
73 $this->client->setOption( Memcached::OPT_POLL_TIMEOUT, $params['timeout'] / 1000 );
74
75 // Set libketama mode since it's recommended by the documentation and
76 // is as good as any. There's no way to configure libmemcached to use
77 // hashes identical to the ones currently in use by the PHP client, and
78 // even implementing one of the libmemcached hashes in pure PHP for
79 // forwards compatibility would require MWMemcached::get_sock() to be
80 // rewritten.
81 $this->client->setOption( Memcached::OPT_LIBKETAMA_COMPATIBLE, true );
82
83 // Set the serializer
84 switch ( $params['serializer'] ) {
85 case 'php':
86 $this->client->setOption( Memcached::OPT_SERIALIZER, Memcached::SERIALIZER_PHP );
87 break;
88 case 'igbinary':
89 if ( !Memcached::HAVE_IGBINARY ) {
90 throw new MWException( __CLASS__.': the igbinary extension is not available ' .
91 'but igbinary serialization was requested.' );
92 }
93 $this->client->setOption( Memcached::OPT_SERIALIZER, Memcached::SERIALIZER_IGBINARY );
94 break;
95 default:
96 throw new MWException( __CLASS__.': invalid value for serializer parameter' );
97 }
98 $servers = array();
99 foreach ( $params['servers'] as $host ) {
100 $servers[] = IP::splitHostAndPort( $host ); // (ip, port)
101 }
102 $this->client->addServers( $servers );
103 }
104
105 /**
106 * @param $key string
107 * @return Mixed
108 */
109 public function get( $key ) {
110 $this->debugLog( "get($key)" );
111 return $this->checkResult( $key, parent::get( $key ) );
112 }
113
114 /**
115 * @param $key string
116 * @param $value
117 * @param $exptime int
118 * @return bool
119 */
120 public function set( $key, $value, $exptime = 0 ) {
121 $this->debugLog( "set($key)" );
122 return $this->checkResult( $key, parent::set( $key, $value, $exptime ) );
123 }
124
125 /**
126 * @param $key string
127 * @param $time int
128 * @return bool
129 */
130 public function delete( $key, $time = 0 ) {
131 $this->debugLog( "delete($key)" );
132 $result = parent::delete( $key, $time );
133 if ( $result === false && $this->client->getResultCode() === Memcached::RES_NOTFOUND ) {
134 // "Not found" is counted as success in our interface
135 return true;
136 } else {
137 return $this->checkResult( $key, $result );
138 }
139 }
140
141 /**
142 * @param $key string
143 * @param $value int
144 * @return Mixed
145 */
146 public function add( $key, $value, $exptime = 0 ) {
147 $this->debugLog( "add($key)" );
148 return $this->checkResult( $key, parent::add( $key, $value, $exptime ) );
149 }
150
151 /**
152 * @param $key string
153 * @param $value int
154 * @param $exptime
155 * @return Mixed
156 */
157 public function replace( $key, $value, $exptime = 0 ) {
158 $this->debugLog( "replace($key)" );
159 return $this->checkResult( $key, parent::replace( $key, $value, $exptime ) );
160 }
161
162 /**
163 * @param $key string
164 * @param $value int
165 * @return Mixed
166 */
167 public function incr( $key, $value = 1 ) {
168 $this->debugLog( "incr($key)" );
169 $result = $this->client->increment( $key, $value );
170 return $this->checkResult( $key, $result );
171 }
172
173 /**
174 * @param $key string
175 * @param $value int
176 * @return Mixed
177 */
178 public function decr( $key, $value = 1 ) {
179 $this->debugLog( "decr($key)" );
180 $result = $this->client->decrement( $key, $value );
181 return $this->checkResult( $key, $result );
182 }
183
184 /**
185 * Check the return value from a client method call and take any necessary
186 * action. Returns the value that the wrapper function should return. At
187 * present, the return value is always the same as the return value from
188 * the client, but some day we might find a case where it should be
189 * different.
190 *
191 * @param $key The key used by the caller, or false if there wasn't one.
192 * @param $result The return value
193 */
194 protected function checkResult( $key, $result ) {
195 if ( $result !== false ) {
196 return $result;
197 }
198 switch ( $this->client->getResultCode() ) {
199 case Memcached::RES_SUCCESS:
200 break;
201 case Memcached::RES_DATA_EXISTS:
202 case Memcached::RES_NOTSTORED:
203 case Memcached::RES_NOTFOUND:
204 $this->debugLog( "result: " . $this->client->getResultMessage() );
205 break;
206 default:
207 $msg = $this->client->getResultMessage();
208 if ( $key !== false ) {
209 $server = $this->client->getServerByKey( $key );
210 $serverName = "{$server['host']}:{$server['port']}";
211 $msg = "Memcached error for key \"$key\" on server \"$serverName\": $msg";
212 } else {
213 $msg = "Memcached error: $msg";
214 }
215 wfDebugLog( 'memcached-serious', $msg );
216 }
217 return $result;
218 }
219
220 /**
221 * @param $keys Array
222 * @return Array
223 */
224 public function getMulti( array $keys ) {
225 $this->debugLog( 'getMulti(' . implode( ', ', $keys ) . ')' );
226 $callback = array( $this, 'encodeKey' );
227 $result = $this->client->getMulti( array_map( $callback, $keys ) );
228 return $this->checkResult( false, $result );
229 }
230
231 /* NOTE: there is no cas() method here because it is currently not supported
232 * by the BagOStuff interface and other BagOStuff subclasses, such as
233 * SqlBagOStuff.
234 */
235 }