MediaWiki REL1_27
|
Handles per process caching of items. More...
Public Member Functions | |
__construct ( $maxKeys) | |
clear ( $keys=null) | |
Clear one or several cache entries, or all cache entries. | |
get ( $key, $prop) | |
Get a property field for a cache entry. | |
has ( $key, $prop, $maxAge=0.0) | |
Check if a property field exists for a cache entry. | |
resize ( $maxKeys) | |
Resize the maximum number of cache entries, removing older entries as needed. | |
set ( $key, $prop, $value) | |
Set a property field for a cache entry. | |
Protected Member Functions | |
ping ( $key) | |
Push an entry to the top of the cache. | |
Protected Attributes | |
Array | $cache = [] |
Array | $cacheTimes = [] |
$maxCacheKeys | |
Handles per process caching of items.
Definition at line 29 of file ProcessCacheLRU.php.
ProcessCacheLRU::__construct | ( | $maxKeys | ) |
int | $maxKeys | Maximum number of entries allowed (min 1). |
UnexpectedValueException | When $maxCacheKeys is not an int or =< 0. |
Definition at line 42 of file ProcessCacheLRU.php.
References resize().
ProcessCacheLRU::clear | ( | $keys = null | ) |
ProcessCacheLRU::get | ( | $key, | |
$prop | |||
) |
Get a property field for a cache entry.
This returns null if the property is not set. If the item is already set, it will be pushed to the top of the cache.
string | $key | |
string | $prop |
Definition at line 96 of file ProcessCacheLRU.php.
Referenced by JobQueueGroup\queuesHaveJobs().
ProcessCacheLRU::has | ( | $key, | |
$prop, | |||
$maxAge = 0.0 |
|||
) |
Check if a property field exists for a cache entry.
string | $key | |
string | $prop | |
float | $maxAge | Ignore items older than this many seconds (since 1.21) |
Definition at line 77 of file ProcessCacheLRU.php.
References cache.
|
protected |
Push an entry to the top of the cache.
string | $key |
Definition at line 147 of file ProcessCacheLRU.php.
References cache.
ProcessCacheLRU::resize | ( | $maxKeys | ) |
Resize the maximum number of cache entries, removing older entries as needed.
int | $maxKeys |
UnexpectedValueException |
Definition at line 129 of file ProcessCacheLRU.php.
Referenced by __construct().
ProcessCacheLRU::set | ( | $key, | |
$prop, | |||
$value | |||
) |
Set a property field for a cache entry.
This will prune the cache if it gets too large based on LRU. If the item is already set, it will be pushed to the top of the cache.
string | $key | |
string | $prop | |
mixed | $value |
Definition at line 56 of file ProcessCacheLRU.php.
References $value, cache, key, and ping().
Referenced by JobQueueGroup\push().
|
protected |
Definition at line 31 of file ProcessCacheLRU.php.
|
protected |
Definition at line 34 of file ProcessCacheLRU.php.
|
protected |
Definition at line 36 of file ProcessCacheLRU.php.