MediaWiki
REL1_24
|
Manage locks using redis servers. More...
Public Member Functions | |
__construct (array $config) | |
Construct a new instance from configuration. | |
__destruct () | |
Make sure remaining locks get cleared for sanity. | |
Protected Member Functions | |
freeLocksOnServer ($lockSrv, array $pathsByType) | |
Get a connection to a lock server and release locks on $paths. | |
getLocksOnServer ($lockSrv, array $pathsByType) | |
Get a connection to a lock server and acquire locks. | |
isServerUp ($lockSrv) | |
Check if a lock server is up. | |
recordKeyForPath ($path, $type) | |
releaseAllLocks () | |
Release all locks that this session is holding. | |
Protected Attributes | |
$lockServers = array() | |
array | $lockTypeMap |
Mapping of lock types to the type actually used *. | |
RedisConnectionPool | $redisPool |
* | |
string | $session = '' |
Random UUID *. |
Manage locks using redis servers.
Version of LockManager based on using redis servers. This is meant for multi-wiki systems that may share files. All locks are non-blocking, which avoids deadlocks.
All lock requests for a resource, identified by a hash string, will map to one bucket. Each bucket maps to one or several peer servers, each running redis. A majority of peers must agree for a lock to be acquired.
This class requires Redis 2.6 as it makes use Lua scripts for fast atomic operations.
Definition at line 40 of file RedisLockManager.php.
RedisLockManager::__construct | ( | array $ | config | ) |
Construct a new instance from configuration.
array | $config | Parameters include:
|
MWException |
Reimplemented from LockManager.
Definition at line 64 of file RedisLockManager.php.
Make sure remaining locks get cleared for sanity.
Definition at line 258 of file RedisLockManager.php.
RedisLockManager::freeLocksOnServer | ( | $ | lockSrv, |
array $ | pathsByType | ||
) | [protected] |
Get a connection to a lock server and release locks on $paths.
Subclasses must effectively implement this or releaseAllLocks().
string | $lockSrv | |
array | $pathsByType | Map of LockManager::LOCK_* constants to lists of paths |
Reimplemented from QuorumLockManager.
Definition at line 169 of file RedisLockManager.php.
RedisLockManager::getLocksOnServer | ( | $ | lockSrv, |
array $ | pathsByType | ||
) | [protected] |
Get a connection to a lock server and acquire locks.
string | $lockSrv | |
array | $pathsByType | Map of LockManager::LOCK_* constants to lists of paths |
Reimplemented from QuorumLockManager.
Definition at line 78 of file RedisLockManager.php.
RedisLockManager::isServerUp | ( | $ | lockSrv | ) | [protected] |
Check if a lock server is up.
This should process cache results to reduce RTT.
string | $lockSrv |
Reimplemented from QuorumLockManager.
Definition at line 241 of file RedisLockManager.php.
RedisLockManager::recordKeyForPath | ( | $ | path, |
$ | type | ||
) | [protected] |
string | $path | |
string | $type | One of (EX,SH) |
Definition at line 250 of file RedisLockManager.php.
RedisLockManager::releaseAllLocks | ( | ) | [protected] |
Release all locks that this session is holding.
Subclasses must effectively implement this or freeLocksOnServer().
Reimplemented from QuorumLockManager.
Definition at line 237 of file RedisLockManager.php.
RedisLockManager::$lockServers = array() [protected] |
Definition at line 50 of file RedisLockManager.php.
array RedisLockManager::$lockTypeMap [protected] |
array( self::LOCK_SH => self::LOCK_SH, self::LOCK_UW => self::LOCK_SH, self::LOCK_EX => self::LOCK_EX )
Mapping of lock types to the type actually used *.
Reimplemented from LockManager.
Definition at line 41 of file RedisLockManager.php.
RedisConnectionPool RedisLockManager::$redisPool [protected] |
*
Definition at line 47 of file RedisLockManager.php.
string RedisLockManager::$session = '' [protected] |
Random UUID *.
Definition at line 52 of file RedisLockManager.php.