0d4005207475459141c27b990f452eb1d40202a6
[lhc/web/wiklou.git] / includes / objectcache / ObjectCache.php
1 <?php
2 /**
3 * Functions to get cache objects.
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 use MediaWiki\Logger\LoggerFactory;
25
26 /**
27 * Functions to get cache objects
28 *
29 * The word "cache" has two main dictionary meanings, and both
30 * are used in this factory class. They are:
31 *
32 * - a) Cache (the computer science definition).
33 * A place to store copies or computations on existing data for
34 * higher access speeds.
35 * - b) Storage.
36 * A place to store lightweight data that is not canonically
37 * stored anywhere else (e.g. a "hoard" of objects).
38 *
39 * The former should always use strongly consistent stores, so callers don't
40 * have to deal with stale reads. The later may be eventually consistent, but
41 * callers can use BagOStuff:READ_LATEST to see the latest available data.
42 *
43 * Primary entry points:
44 *
45 * - ObjectCache::newAccelerator( $fallbackType )
46 * Purpose: Cache.
47 * Stored only on the individual web server.
48 * Not associated with other servers.
49 *
50 * - wfGetMainCache()
51 * Purpose: Cache.
52 * Stored centrally within the local data-center.
53 * Not replicated to other DCs.
54 * Also known as $wgMemc. Configured by $wgMainCacheType.
55 *
56 * - ObjectCache::getMainWANInstance()
57 * Purpose: Cache.
58 * Stored in the local data-center's main cache (uses different cache keys).
59 * Delete events are broadcasted to other DCs. See WANObjectCache for details.
60 *
61 * - ObjectCache::getMainStashInstance()
62 * Purpose: Ephemeral storage.
63 * Stored centrally within the local data-center.
64 * Changes are replicated to other DCs (eventually consistent).
65 * To retrieve the latest value (e.g. not from a slave), use BagOStuff:READ_LATEST.
66 * This store may be subject to LRU style evictions.
67 *
68 * - wfGetCache( $cacheType )
69 * Get a specific cache type by key in $wgObjectCaches.
70 *
71 * @ingroup Cache
72 */
73 class ObjectCache {
74 /** @var Array Map of (id => BagOStuff) */
75 public static $instances = array();
76
77 /** @var Array Map of (id => WANObjectCache) */
78 public static $wanInstances = array();
79
80 /**
81 * Get a cached instance of the specified type of cache object.
82 *
83 * @param string $id A key in $wgObjectCaches.
84 * @return BagOStuff
85 */
86 public static function getInstance( $id ) {
87 if ( !isset( self::$instances[$id] ) ) {
88 self::$instances[$id] = self::newFromId( $id );
89 }
90
91 return self::$instances[$id];
92 }
93
94 /**
95 * Get a cached instance of the specified type of WAN cache object.
96 *
97 * @since 1.26
98 * @param string $id A key in $wgWANObjectCaches.
99 * @return WANObjectCache
100 */
101 public static function getWANInstance( $id ) {
102 if ( !isset( self::$wanInstances[$id] ) ) {
103 self::$wanInstances[$id] = self::newWANCacheFromId( $id );
104 }
105
106 return self::$wanInstances[$id];
107 }
108
109 /**
110 * Create a new cache object of the specified type.
111 *
112 * @param string $id A key in $wgObjectCaches.
113 * @return BagOStuff
114 * @throws MWException
115 */
116 public static function newFromId( $id ) {
117 global $wgObjectCaches;
118
119 if ( !isset( $wgObjectCaches[$id] ) ) {
120 throw new MWException( "Invalid object cache type \"$id\" requested. " .
121 "It is not present in \$wgObjectCaches." );
122 }
123
124 return self::newFromParams( $wgObjectCaches[$id] );
125 }
126
127 /**
128 * Create a new cache object from parameters.
129 *
130 * @param array $params Must have 'factory' or 'class' property.
131 * - factory: Callback passed $params that returns BagOStuff.
132 * - class: BagOStuff subclass constructed with $params.
133 * - loggroup: Alias to set 'logger' key with LoggerFactory group.
134 * - .. Other parameters passed to factory or class.
135 * @return BagOStuff
136 * @throws MWException
137 */
138 public static function newFromParams( $params ) {
139 if ( isset( $params['loggroup'] ) ) {
140 $params['logger'] = LoggerFactory::getInstance( $params['loggroup'] );
141 } else {
142 // For backwards-compatability with custom parameters, lets not
143 // have all logging suddenly disappear
144 $params['logger'] = LoggerFactory::getInstance( 'objectcache' );
145 }
146 if ( isset( $params['factory'] ) ) {
147 return call_user_func( $params['factory'], $params );
148 } elseif ( isset( $params['class'] ) ) {
149 $class = $params['class'];
150 return new $class( $params );
151 } else {
152 throw new MWException( "The definition of cache type \""
153 . print_r( $params, true ) . "\" lacks both "
154 . "factory and class parameters." );
155 }
156 }
157
158 /**
159 * Factory function for CACHE_ANYTHING (referenced from DefaultSettings.php)
160 *
161 * CACHE_ANYTHING means that stuff has to be cached, not caching is not an option.
162 * If a caching method is configured for any of the main caches ($wgMainCacheType,
163 * $wgMessageCacheType, $wgParserCacheType), then CACHE_ANYTHING will effectively
164 * be an alias to the configured cache choice for that.
165 * If no cache choice is configured (by default $wgMainCacheType is CACHE_NONE),
166 * then CACHE_ANYTHING will forward to CACHE_DB.
167 *
168 * @param array $params
169 * @return BagOStuff
170 */
171 public static function newAnything( $params ) {
172 global $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType;
173 $candidates = array( $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType );
174 foreach ( $candidates as $candidate ) {
175 if ( $candidate !== CACHE_NONE && $candidate !== CACHE_ANYTHING ) {
176 return self::getInstance( $candidate );
177 }
178 }
179 return self::getInstance( CACHE_DB );
180 }
181
182 /**
183 * Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
184 *
185 * This will look for any APC style server-local cache.
186 * A fallback cache can be specified if none is found.
187 *
188 * // Direct calls
189 * ObjectCache::newAccelerator( $fallbackType );
190 *
191 * // From $wgObjectCaches via newFromParams()
192 * ObjectCache::newAccelerator( array( 'fallback' => $fallbackType ) );
193 *
194 * @param array $params [optional] Array key 'fallback' for $fallback.
195 * @param int|string $fallback Fallback cache, e.g. (CACHE_NONE, "hash") (since 1.24)
196 * @return BagOStuff
197 * @throws MWException
198 */
199 public static function newAccelerator( $params = array(), $fallback = null ) {
200 if ( $fallback === null ) {
201 if ( isset( $params['fallback'] ) ) {
202 $fallback = $params['fallback'];
203 } elseif ( !is_array( $params ) ) {
204 $fallback = $params;
205 }
206 }
207 if ( function_exists( 'apc_fetch' ) ) {
208 $id = 'apc';
209 } elseif ( function_exists( 'xcache_get' ) && wfIniGetBool( 'xcache.var_size' ) ) {
210 $id = 'xcache';
211 } elseif ( function_exists( 'wincache_ucache_get' ) ) {
212 $id = 'wincache';
213 } else {
214 if ( $fallback === null ) {
215 throw new MWException( 'CACHE_ACCEL requested but no suitable object ' .
216 'cache is present. You may want to install APC.' );
217 }
218 $id = $fallback;
219 }
220 return self::newFromId( $id );
221 }
222
223 /**
224 * Factory function that creates a memcached client object.
225 *
226 * This always uses the PHP client, since the PECL client has a different
227 * hashing scheme and a different interpretation of the flags bitfield, so
228 * switching between the two clients randomly would be disastrous.
229 *
230 * @param array $params
231 * @return MemcachedPhpBagOStuff
232 */
233 public static function newMemcached( $params ) {
234 return new MemcachedPhpBagOStuff( $params );
235 }
236
237 /**
238 * Create a new cache object of the specified type.
239 *
240 * @since 1.26
241 * @param string $id A key in $wgWANObjectCaches.
242 * @return WANObjectCache
243 * @throws MWException
244 */
245 public static function newWANCacheFromId( $id ) {
246 global $wgWANObjectCaches;
247
248 if ( !isset( $wgWANObjectCaches[$id] ) ) {
249 throw new MWException( "Invalid object cache type \"$id\" requested. " .
250 "It is not present in \$wgWANObjectCaches." );
251 }
252
253 $params = $wgWANObjectCaches[$id];
254 $class = $params['relayerConfig']['class'];
255 $params['relayer'] = new $class( $params['relayerConfig'] );
256 $params['cache'] = self::newFromId( $params['cacheId'] );
257 $class = $params['class'];
258
259 return new $class( $params );
260 }
261
262 /**
263 * Get the main WAN cache object.
264 *
265 * @since 1.26
266 * @return WANObjectCache
267 */
268 public static function getMainWANInstance() {
269 global $wgMainWANCache;
270
271 return self::getWANInstance( $wgMainWANCache );
272 }
273
274 /**
275 * Get the cache object for the main stash.
276 *
277 * Stash objects are BagOStuff instances suitable for storing light
278 * weight data that is not canonically stored elsewhere (such as RDBMS).
279 * Stashes should be configured to propagate changes to all data-centers.
280 *
281 * Callers should be prepared for:
282 * - a) Writes to be slower in non-"primary" (e.g. HTTP GET/HEAD only) DCs
283 * - b) Reads to be eventually consistent, e.g. for get()/getMulti()
284 * In general, this means avoiding updates on idempotent HTTP requests and
285 * avoiding an assumption of perfect serializability (or accepting anomalies).
286 * Reads may be eventually consistent or data might rollback as nodes flap.
287 * Callers can use BagOStuff:READ_LATEST to see the latest available data.
288 *
289 * @return BagOStuff
290 * @since 1.26
291 */
292 public static function getMainStashInstance() {
293 global $wgMainStash;
294
295 return self::getInstance( $wgMainStash );
296 }
297
298 /**
299 * Clear all the cached instances.
300 */
301 public static function clear() {
302 self::$instances = array();
303 self::$wanInstances = array();
304 }
305 }