Go to the documentation of this file.
88 $this->workers = $conf[
'workers'];
89 $this->maxqueue = $conf[
'maxqueue'];
90 $this->timeout = $conf[
'timeout'];
91 if ( isset( $conf[
'slots'] ) ) {
92 $this->slots = $conf[
'slots'];
100 $this->isMightWaitKey = !preg_match(
'/^nowait:/', $this->
key );
117 $class = $conf[
'class'];
151 abstract public function release();
159 if ( $this->isMightWaitKey ) {
160 if ( self::$acquiredMightWaitKey ) {
170 'You may only aquire a single non-nowait lock.' );
172 } elseif ( $this->timeout !== 0 ) {
174 'Locks starting in nowait: must have 0 timeout.' );
208 return $type .
':' . ( hexdec( substr( sha1(
$key ), 0, 4 ) ) %
$slots );
onAcquire()
Update any lock tracking information when the lock is acquired.
A default PoolCounter, which provides no locking.
acquireForMe()
I want to do this task and I need to do it myself.
static newFatal( $message)
Factory function for fatal errors.
release()
I have successfully finished my task.
int $workers
Maximum number of workers working on tasks with the same key simultaneously.
onRelease()
Update any lock tracking information when the lock is released.
static bool $acquiredMightWaitKey
Whether this process holds a "might wait" lock key.
acquireForAnyone()
I want to do this task, but if anyone else does it instead, it's also fine for me.
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
When you have many workers (threads/servers) giving service, and a cached item expensive to produce e...
bool $isMightWaitKey
Whether the key is a "might wait" key.
int $maxqueue
If this number of workers are already working/waiting, fail instead of wait.
__construct( $conf, $type, $key)
string $key
All workers with the same key share the lock.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
static newGood( $value=null)
Factory function for good results.
static factory( $type, $key)
Create a Pool counter.
int $slots
Maximum number of workers working on this task type, regardless of key.
$wgPoolCounterConf
Configuration for processing pool control, for use in high-traffic wikis.
float $timeout
Maximum time in seconds to wait for the lock.
hashKeyIntoSlots( $type, $key, $slots)
Given a key (any string) and the number of lots, returns a slot key (a prefix with a suffix integer f...
precheckAcquire()
Checks that the lock request is sane.