MediaWiki  1.28.1
ProcessCacheLRU Class Reference

Handles per process caching of items. More...

Inheritance diagram for ProcessCacheLRU:

Public Member Functions

 __construct ($maxKeys)
 
 clear ($keys=null)
 Clear one or several cache entries, or all cache entries. More...
 
 get ($key, $prop)
 Get a property field for a cache entry. More...
 
 getSize ()
 Get cache size. More...
 
 has ($key, $prop, $maxAge=0.0)
 Check if a property field exists for a cache entry. More...
 
 resize ($maxKeys)
 Resize the maximum number of cache entries, removing older entries as needed. More...
 
 set ($key, $prop, $value)
 Set a property field for a cache entry. More...
 

Protected Member Functions

 ping ($key)
 Push an entry to the top of the cache. More...
 

Protected Attributes

Array $cache = []
 
Array $cacheTimes = []
 
 $maxCacheKeys
 

Detailed Description

Handles per process caching of items.

Definition at line 29 of file ProcessCacheLRU.php.

Constructor & Destructor Documentation

ProcessCacheLRU::__construct (   $maxKeys)
Parameters
int$maxKeysMaximum number of entries allowed (min 1).
Exceptions
UnexpectedValueExceptionWhen $maxCacheKeys is not an int or =< 0.

Definition at line 42 of file ProcessCacheLRU.php.

References resize().

Member Function Documentation

ProcessCacheLRU::clear (   $keys = null)

Clear one or several cache entries, or all cache entries.

Parameters
string | array$keys
Returns
void

Definition at line 110 of file ProcessCacheLRU.php.

References $keys, array(), as, and cache.

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.

Parameters
string$key
string$prop
Returns
mixed

Definition at line 96 of file ProcessCacheLRU.php.

References cache, and ping().

Referenced by JobQueueGroup\queuesHaveJobs().

ProcessCacheLRU::getSize ( )

Get cache size.

Returns
int

Definition at line 157 of file ProcessCacheLRU.php.

References $maxCacheKeys.

ProcessCacheLRU::has (   $key,
  $prop,
  $maxAge = 0.0 
)

Check if a property field exists for a cache entry.

Parameters
string$key
string$prop
float$maxAgeIgnore items older than this many seconds (since 1.21)
Returns
bool

Definition at line 77 of file ProcessCacheLRU.php.

References cache.

ProcessCacheLRU::ping (   $key)
protected

Push an entry to the top of the cache.

Parameters
string$key

Definition at line 147 of file ProcessCacheLRU.php.

References cache.

Referenced by get(), and set().

ProcessCacheLRU::resize (   $maxKeys)

Resize the maximum number of cache entries, removing older entries as needed.

Parameters
int$maxKeys
Returns
void
Exceptions
UnexpectedValueException

Definition at line 129 of file ProcessCacheLRU.php.

References cache, and key.

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.

Parameters
string$key
string$prop
mixed$value
Returns
void

Definition at line 56 of file ProcessCacheLRU.php.

References $value, cache, key, and ping().

Referenced by JobQueueGroup\push().

Member Data Documentation

Array ProcessCacheLRU::$cache = []
protected

Definition at line 31 of file ProcessCacheLRU.php.

Array ProcessCacheLRU::$cacheTimes = []
protected

Definition at line 34 of file ProcessCacheLRU.php.

ProcessCacheLRU::$maxCacheKeys
protected

Definition at line 36 of file ProcessCacheLRU.php.

Referenced by getSize().


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