3 * Functions to get cache objects.
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
25 * Functions to get cache objects
30 public static $instances = array();
33 * Get a cached instance of the specified type of cache object.
39 static function getInstance( $id ) {
40 if ( isset( self
::$instances[$id] ) ) {
41 return self
::$instances[$id];
44 $object = self
::newFromId( $id );
45 self
::$instances[$id] = $object;
50 * Clear all the cached instances.
52 static function clear() {
53 self
::$instances = array();
57 * Create a new cache object of the specified type.
64 static function newFromId( $id ) {
65 global $wgObjectCaches;
67 if ( !isset( $wgObjectCaches[$id] ) ) {
68 throw new MWException( "Invalid object cache type \"$id\" requested. " .
69 "It is not present in \$wgObjectCaches." );
72 return self
::newFromParams( $wgObjectCaches[$id] );
76 * Create a new cache object from parameters
78 * @param array $params
83 static function newFromParams( $params ) {
84 if ( isset( $params['factory'] ) ) {
85 return call_user_func( $params['factory'], $params );
86 } elseif ( isset( $params['class'] ) ) {
87 $class = $params['class'];
88 return new $class( $params );
90 throw new MWException( "The definition of cache type \""
91 . print_r( $params, true ) . "\" lacks both "
92 . "factory and class parameters." );
97 * Factory function referenced from DefaultSettings.php for CACHE_ANYTHING
99 * CACHE_ANYTHING means that stuff has to be cached, not caching is not an option.
100 * If a caching method is configured for any of the main caches ($wgMainCacheType,
101 * $wgMessageCacheType, $wgParserCacheType), then CACHE_ANYTHING will effectively
102 * be an alias to the configured cache choice for that.
103 * If no cache choice is configured (by default $wgMainCacheType is CACHE_NONE),
104 * then CACHE_ANYTHING will forward to CACHE_DB.
105 * @param array $params
108 static function newAnything( $params ) {
109 global $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType;
110 $candidates = array( $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType );
111 foreach ( $candidates as $candidate ) {
112 if ( $candidate !== CACHE_NONE
&& $candidate !== CACHE_ANYTHING
) {
113 return self
::getInstance( $candidate );
116 return self
::getInstance( CACHE_DB
);
120 * Factory function referenced from DefaultSettings.php for CACHE_ACCEL.
122 * This will look for any APC style server-local cache.
123 * A fallback cache can be specified if none is found.
125 * @param array $params
126 * @param int|string $fallback Fallback cache, e.g. (CACHE_NONE, "hash") (since 1.24)
127 * @throws MWException
130 static function newAccelerator( $params, $fallback = null ) {
131 if ( function_exists( 'apc_fetch' ) ) {
133 } elseif ( function_exists( 'xcache_get' ) && wfIniGetBool( 'xcache.var_size' ) ) {
135 } elseif ( function_exists( 'wincache_ucache_get' ) ) {
139 return self
::newFromId( $fallback );
141 throw new MWException( "CACHE_ACCEL requested but no suitable object " .
142 "cache is present. You may want to install APC." );
144 return self
::newFromId( $id );
148 * Factory function that creates a memcached client object.
150 * This always uses the PHP client, since the PECL client has a different
151 * hashing scheme and a different interpretation of the flags bitfield, so
152 * switching between the two clients randomly would be disastrous.
154 * @param array $params
156 * @return MemcachedPhpBagOStuff
158 static function newMemcached( $params ) {
159 return new MemcachedPhpBagOStuff( $params );