MediaWiki  1.27.2
JobQueueAggregatorRedis Class Reference

Class to handle tracking information about all queues using PhpRedis. More...

Inheritance diagram for JobQueueAggregatorRedis:
Collaboration diagram for JobQueueAggregatorRedis:

Public Member Functions

 __construct (array $params)
 
- Public Member Functions inherited from JobQueueAggregator
 __construct (array $params)
 
 getAllReadyWikiQueues ()
 Get the list of all of the queues with jobs. More...
 
 notifyQueueEmpty ($wiki, $type)
 Mark a queue as being empty. More...
 
 notifyQueueNonEmpty ($wiki, $type)
 Mark a queue as being non-empty. More...
 
 purge ()
 Purge all of the aggregator information. More...
 

Protected Member Functions

 doGetAllReadyWikiQueues ()
 
 doNotifyQueueEmpty ($wiki, $type)
 
 doNotifyQueueNonEmpty ($wiki, $type)
 
 doPurge ()
 
 getConnection ()
 Get a connection to the server that handles all sub-queues for this queue. More...
 
- Protected Member Functions inherited from JobQueueAggregator
 doGetAllReadyWikiQueues ()
 
 doNotifyQueueEmpty ($wiki, $type)
 
 doNotifyQueueNonEmpty ($wiki, $type)
 
 doPurge ()
 
 findPendingWikiQueues ()
 Get all databases that have a pending job. More...
 

Protected Attributes

RedisConnectionPool $redisPool
 
array $servers
 List of Redis server addresses. More...
 

Private Member Functions

 decodeQueueName ($name)
 
 getReadyQueueKey ()
 

Additional Inherited Members

- Static Public Member Functions inherited from JobQueueAggregator
static destroySingleton ()
 Destroy the singleton instance. More...
 
static singleton ()
 
- Static Protected Attributes inherited from JobQueueAggregator
static JobQueueAggregator $instance = null
 

Detailed Description

Class to handle tracking information about all queues using PhpRedis.

The mediawiki/services/jobrunner background service must be set up and running.

Since
1.21

Definition at line 33 of file JobQueueAggregatorRedis.php.

Constructor & Destructor Documentation

JobQueueAggregatorRedis::__construct ( array  $params)
Parameters
array$paramsPossible keys:
  • redisConfig : An array of parameters to RedisConnectionPool::__construct().
  • redisServers : Array of server entries, the first being the primary and the others being fallback servers. Each entry is either a hostname/port combination or the absolute path of a UNIX socket. If a hostname is specified but no port, the standard port number 6379 will be used. Required.

Definition at line 48 of file JobQueueAggregatorRedis.php.

References servers, and RedisConnectionPool\singleton().

Member Function Documentation

JobQueueAggregatorRedis::decodeQueueName (   $name)
private
Parameters
string$name
Returns
string

Definition at line 127 of file JobQueueAggregatorRedis.php.

References $name, $type, and list.

Referenced by doGetAllReadyWikiQueues().

JobQueueAggregatorRedis::doGetAllReadyWikiQueues ( )
protected
JobQueueAggregatorRedis::doNotifyQueueEmpty (   $wiki,
  $type 
)
protected

Definition at line 57 of file JobQueueAggregatorRedis.php.

JobQueueAggregatorRedis::doNotifyQueueNonEmpty (   $wiki,
  $type 
)
protected

Definition at line 61 of file JobQueueAggregatorRedis.php.

JobQueueAggregatorRedis::doPurge ( )
protected

Definition at line 94 of file JobQueueAggregatorRedis.php.

JobQueueAggregatorRedis::getConnection ( )
protected

Get a connection to the server that handles all sub-queues for this queue.

Returns
RedisConnRef|bool Returns false on failure
Exceptions
MWException

Definition at line 104 of file JobQueueAggregatorRedis.php.

References as, and servers.

Referenced by doGetAllReadyWikiQueues().

JobQueueAggregatorRedis::getReadyQueueKey ( )
private
Returns
string

Definition at line 119 of file JobQueueAggregatorRedis.php.

Referenced by doGetAllReadyWikiQueues().

Member Data Documentation

RedisConnectionPool JobQueueAggregatorRedis::$redisPool
protected

Definition at line 35 of file JobQueueAggregatorRedis.php.

array JobQueueAggregatorRedis::$servers
protected

List of Redis server addresses.

Definition at line 37 of file JobQueueAggregatorRedis.php.


The documentation for this class was generated from the following file: