Go to the documentation of this file.
93 if ( !isset( self::$instances[$id] ) ) {
97 return self::$instances[$id];
108 if ( !isset( self::$wanInstances[$id] ) ) {
112 return self::$wanInstances[$id];
129 } elseif ( $id ===
'hash' ) {
133 throw new InvalidArgumentException(
"Invalid object cache type \"$id\" requested. " .
134 "It is not present in \$wgObjectCaches." );
153 if ( is_string( $keyspace ) && $keyspace !==
'' ) {
172 if ( isset(
$params[
'loggroup'] ) ) {
173 $params[
'logger'] = LoggerFactory::getInstance(
$params[
'loggroup'] );
175 $params[
'logger'] = LoggerFactory::getInstance(
'objectcache' );
177 if ( !isset(
$params[
'keyspace'] ) ) {
180 if ( isset(
$params[
'factory'] ) ) {
182 } elseif ( isset(
$params[
'class'] ) ) {
185 $params[
'asyncHandler'] =
$params[
'asyncHandler'] ??
'DeferredUpdates::addCallableUpdate';
190 if ( isset(
$params[
'server'] ) && !isset(
$params[
'servers'] ) ) {
195 if ( isset(
$params[
'servers'] ) ) {
196 foreach (
$params[
'servers']
as &$server ) {
197 if ( $server[
'type'] ===
'sqlite' && !isset( $server[
'dbDirectory'] ) ) {
198 $server[
'dbDirectory'] = MediaWikiServices::getInstance()
199 ->getMainConfig()->get(
'SQLiteDataDir' );
207 if ( !isset(
$params[
'servers'] ) ) {
210 if ( !isset(
$params[
'debug'] ) ) {
213 if ( !isset(
$params[
'persistent'] ) ) {
216 if ( !isset(
$params[
'timeout'] ) ) {
222 throw new InvalidArgumentException(
"The definition of cache type \""
223 . print_r(
$params,
true ) .
"\" lacks both "
224 .
"factory and class parameters." );
244 foreach ( $candidates
as $candidate ) {
256 if ( MediaWikiServices::getInstance()->isServiceDisabled(
'DBLoadBalancer' ) ) {
285 $cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
308 throw new UnexpectedValueException(
309 "Cache type \"$id\" requested is not present in \$wgWANObjectCaches." );
314 throw new UnexpectedValueException(
315 "Cache type \"{$params['cacheId']}\" is not present in \$wgObjectCaches." );
333 $services = MediaWikiServices::getInstance();
335 $erGroup =
$services->getEventRelayerGroup();
336 if ( isset(
$params[
'channels'] ) ) {
337 foreach (
$params[
'channels']
as $action => $channel ) {
338 $params[
'relayers'][$action] = $erGroup->getRelayer( $channel );
339 $params[
'channels'][$action] = $channel;
343 if ( isset(
$params[
'loggroup'] ) ) {
344 $params[
'logger'] = LoggerFactory::getInstance(
$params[
'loggroup'] );
346 $params[
'logger'] = LoggerFactory::getInstance(
'objectcache' );
379 return MediaWikiServices::getInstance()->getMainWANObjectCache();
402 return MediaWikiServices::getInstance()->getMainObjectStash();
409 self::$instances = [];
410 self::$wanInstances = [];
420 if ( function_exists(
'apc_fetch' ) ) {
422 } elseif ( function_exists(
'apcu_fetch' ) ) {
424 } elseif ( function_exists(
'wincache_ucache_get' ) ) {
static clear()
Clear all the cached instances.
static newFromId( $id)
Create a new cache object of the specified type.
Functions to get cache objects.
static getLocalClusterInstance()
Get the main cluster-local cache object.
Simple store for keeping values in an associative array for the current process.
A BagOStuff object with no objects in it.
static detectLocalServerCache()
Detects which local server cache library is present and returns a configuration for it.
$wgWANObjectCaches
Advanced WAN object cache configuration.
static BagOStuff[] $instances
Map of (id => BagOStuff)
$wgMessageCacheType
The cache type for storing the contents of the MediaWiki namespace.
Class representing a cache/ephemeral data store.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static newAnything( $params)
Factory function for CACHE_ANYTHING (referenced from DefaultSettings.php)
static getMainStashInstance()
Get the cache object for the main stash.
static WANObjectCache[] $wanInstances
Map of (id => WANObjectCache)
$wgCachePrefix
Overwrite the caching key prefix with custom value.
global $wgCommandLineMode
static newWANCacheFromParams(array $params)
Create a new cache object of the specified type.
$wgObjectCaches
Advanced object cache configuration.
static getWANInstance( $id)
Get a cached instance of the specified type of WAN cache object.
static getInstance( $id)
Get a cached instance of the specified type of cache object.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
$wgParserCacheType
The cache type for storing article HTML.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
static newWANCacheFromId( $id)
Create a new cache object of the specified type.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Multi-datacenter aware caching interface.
static getDefaultKeyspace()
Get the default keyspace for this wiki.
CACHE_MEMCACHED $wgMainCacheType
static getMainWANInstance()
Get the main WAN cache object.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
static newFromParams( $params)
Create a new cache object from parameters.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
static getLocalServerInstance( $fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)