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
23 use Wikimedia\Assert\Assert
;
26 * Handles a simple LRU key/value map with a maximum number of entries
28 * Use ProcessCacheLRU if hierarchical purging is needed or objects can become stale
30 * @see ProcessCacheLRU
36 protected $cache = []; // (key => value)
38 protected $maxCacheKeys; // integer; max entries
41 * @param int $maxKeys Maximum number of entries allowed (min 1).
42 * @throws Exception When $maxCacheKeys is not an int or not above zero.
44 public function __construct( $maxKeys ) {
45 Assert
::parameterType( 'integer', $maxKeys, '$maxKeys' );
46 Assert
::parameter( $maxKeys > 0, '$maxKeys', 'must be above zero' );
48 $this->maxCacheKeys
= $maxKeys;
52 * Set a key/value pair.
53 * This will prune the cache if it gets too large based on LRU.
54 * If the item is already set, it will be pushed to the top of the cache.
60 public function set( $key, $value ) {
61 if ( $this->has( $key ) ) {
63 } elseif ( count( $this->cache
) >= $this->maxCacheKeys
) {
64 reset( $this->cache
);
65 $evictKey = key( $this->cache
);
66 unset( $this->cache
[$evictKey] );
68 $this->cache
[$key] = $value;
72 * Check if a key exists
77 public function has( $key ) {
78 if ( !is_int( $key ) && !is_string( $key ) ) {
79 throw new MWException( __METHOD__
. ' called with invalid key. Must be string or integer.' );
81 return array_key_exists( $key, $this->cache
);
85 * Get the value for a key.
86 * This returns null if the key is not set.
87 * If the item is already set, it will be pushed to the top of the cache.
90 * @return mixed Returns null if the key was not found
92 public function get( $key ) {
93 if ( !$this->has( $key ) ) {
99 return $this->cache
[$key];
106 public function getAllKeys() {
107 return array_keys( $this->cache
);
111 * Get an item with the given key, producing and setting it if not found.
113 * If the callback returns false, then nothing is stored.
117 * @param callable $callback Callback that will produce the value
118 * @return mixed The cached value if found or the result of $callback otherwise
120 public function getWithSetCallback( $key, callable
$callback ) {
121 if ( $this->has( $key ) ) {
122 $value = $this->get( $key );
124 $value = call_user_func( $callback );
125 if ( $value !== false ) {
126 $this->set( $key, $value );
134 * Clear one or several cache entries, or all cache entries
136 * @param string|array $keys
139 public function clear( $keys = null ) {
140 if ( $keys === null ) {
143 foreach ( (array)$keys as $key ) {
144 unset( $this->cache
[$key] );
150 * Push an entry to the top of the cache
154 protected function ping( $key ) {
155 $item = $this->cache
[$key];
156 unset( $this->cache
[$key] );
157 $this->cache
[$key] = $item;