3 * Per-process memory cache for storing items.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Handles per process caching of items
28 class ProcessCacheLRU
{
30 protected $cache = array(); // (key => prop => value)
32 protected $cacheTimes = array(); // (key => prop => UNIX timestamp)
34 protected $maxCacheKeys; // integer; max entries
37 * @param $maxKeys integer Maximum number of entries allowed (min 1).
38 * @throws UnexpectedValueException When $maxCacheKeys is not an int or =< 0.
40 public function __construct( $maxKeys ) {
41 $this->resize( $maxKeys );
45 * Set a property field for a cache entry.
46 * This will prune the cache if it gets too large based on LRU.
47 * If the item is already set, it will be pushed to the top of the cache.
54 public function set( $key, $prop, $value ) {
55 if ( isset( $this->cache
[$key] ) ) {
56 $this->ping( $key ); // push to top
57 } elseif ( count( $this->cache
) >= $this->maxCacheKeys
) {
58 reset( $this->cache
);
59 $evictKey = key( $this->cache
);
60 unset( $this->cache
[$evictKey] );
61 unset( $this->cacheTimes
[$evictKey] );
63 $this->cache
[$key][$prop] = $value;
64 $this->cacheTimes
[$key][$prop] = time();
68 * Check if a property field exists for a cache entry.
72 * @param $maxAge integer Ignore items older than this many seconds (since 1.21)
75 public function has( $key, $prop, $maxAge = 0 ) {
76 if ( isset( $this->cache
[$key][$prop] ) ) {
77 return ( $maxAge <= 0 ||
( time() - $this->cacheTimes
[$key][$prop] ) <= $maxAge );
84 * Get a property field for a cache entry.
85 * This returns null if the property is not set.
86 * If the item is already set, it will be pushed to the top of the cache.
92 public function get( $key, $prop ) {
93 if ( isset( $this->cache
[$key][$prop] ) ) {
94 $this->ping( $key ); // push to top
95 return $this->cache
[$key][$prop];
102 * Clear one or several cache entries, or all cache entries
104 * @param $keys string|Array
107 public function clear( $keys = null ) {
108 if ( $keys === null ) {
109 $this->cache
= array();
110 $this->cacheTimes
= array();
112 foreach ( (array)$keys as $key ) {
113 unset( $this->cache
[$key] );
114 unset( $this->cacheTimes
[$key] );
120 * Resize the maximum number of cache entries, removing older entries as needed
122 * @param $maxKeys integer
125 public function resize( $maxKeys ) {
126 if ( !is_int( $maxKeys ) ||
$maxKeys < 1 ) {
127 throw new UnexpectedValueException( __METHOD__
. " must be given an integer >= 1" );
129 $this->maxCacheKeys
= $maxKeys;
130 while ( count( $this->cache
) > $this->maxCacheKeys
) {
131 reset( $this->cache
);
132 $evictKey = key( $this->cache
);
133 unset( $this->cache
[$evictKey] );
134 unset( $this->cacheTimes
[$evictKey] );
139 * Push an entry to the top of the cache
143 protected function ping( $key ) {
144 $item = $this->cache
[$key];
145 unset( $this->cache
[$key] );
146 $this->cache
[$key] = $item;