101 if ( isset(
$params[
'logger'] ) ) {
107 if ( isset(
$params[
'keyspace'] ) ) {
108 $this->keyspace =
$params[
'keyspace'];
111 $this->asyncHandler = isset(
$params[
'asyncHandler'] )
115 if ( !empty(
$params[
'reportDupes'] ) && is_callable( $this->asyncHandler ) ) {
116 $this->reportDupes =
true;
119 $this->syncTimeout = isset(
$params[
'syncTimeout'] ) ?
$params[
'syncTimeout'] : 3;
134 $this->debugMode = $bool;
153 if ( !is_callable( $callback ) ) {
156 $value = call_user_func( $callback );
179 public function get( $key,
$flags = 0, $oldFlags = null ) {
181 $flags = is_int( $oldFlags ) ? $oldFlags :
$flags;
185 return $this->
doGet( $key, $flags );
193 if ( !$this->reportDupes ) {
197 if ( !isset( $this->duplicateKeyLookups[$key] ) ) {
200 $this->duplicateKeyLookups[$key] = 0;
202 $this->duplicateKeyLookups[$key] += 1;
204 if ( $this->dupeTrackScheduled ===
false ) {
205 $this->dupeTrackScheduled =
true;
207 call_user_func( $this->asyncHandler,
function () {
208 $dups = array_filter( $this->duplicateKeyLookups );
209 foreach ( $dups
as $key =>
$count ) {
210 $this->logger->warning(
211 'Duplicate get(): "{key}" fetched {count} times',
213 [
'key' => $key,
'count' =>
$count + 1, ]
226 abstract protected function doGet( $key, $flags = 0 );
238 throw new Exception( __METHOD__ .
' not implemented.' );
250 abstract public function set( $key,
$value, $exptime = 0, $flags = 0 );
258 abstract public function delete( $key );
276 public function merge( $key, callable $callback, $exptime = 0, $attempts = 10, $flags = 0 ) {
277 return $this->
mergeViaLock( $key, $callback, $exptime, $attempts, $flags );
289 protected function mergeViaCas( $key, $callback, $exptime = 0, $attempts = 10 ) {
293 $this->reportDupes =
false;
295 $currentValue = $this->
getWithToken( $key, $casToken, self::READ_LATEST );
303 $value = call_user_func( $callback, $this, $key, $currentValue, $exptime );
308 } elseif ( $currentValue ===
false ) {
318 }
while ( !
$success && --$attempts );
333 protected function cas( $casToken, $key,
$value, $exptime = 0 ) {
334 throw new Exception(
"CAS is not implemented in " . __CLASS__ );
347 protected function mergeViaLock( $key, $callback, $exptime = 0, $attempts = 10, $flags = 0 ) {
348 if ( !$this->
lock( $key, 6 ) ) {
354 $this->reportDupes =
false;
355 $currentValue = $this->
get( $key, self::READ_LATEST );
362 $value = call_user_func( $callback, $this, $key, $currentValue, $exptime );
370 if ( !$this->
unlock( $key ) ) {
372 trigger_error(
"Could not release lock for key '$key'." );
387 $value = $this->
get( $key );
389 return (
$value ===
false ) ?
false : $this->
set( $key,
$value, $expiry );
403 public function lock( $key, $timeout = 6, $expiry = 6, $rclass =
'' ) {
405 if ( isset( $this->locks[$key] ) ) {
406 if ( $rclass !=
'' && $this->locks[$key][
'class'] === $rclass ) {
407 ++$this->locks[$key][
'depth'];
414 $expiry = min( $expiry ?: INF, self::TTL_DAY );
415 $loop =
new WaitConditionLoop(
416 function ()
use ( $key, $timeout, $expiry ) {
418 if ( $this->
add(
"{$key}:lock", 1, $expiry ) ) {
421 return WaitConditionLoop::CONDITION_ABORTED;
424 return WaitConditionLoop::CONDITION_CONTINUE;
429 $locked = ( $loop->invoke() === $loop::CONDITION_REACHED );
431 $this->locks[$key] = [
'class' => $rclass,
'depth' => 1 ];
444 if ( isset( $this->locks[$key] ) && --$this->locks[$key][
'depth'] <= 0 ) {
445 unset( $this->locks[$key] );
447 return $this->
delete(
"{$key}:lock" );
469 final public function getScopedLock( $key, $timeout = 6, $expiry = 30, $rclass =
'' ) {
470 $expiry = min( $expiry ?: INF, self::TTL_DAY );
472 if ( !$this->
lock( $key, $timeout, $expiry, $rclass ) ) {
476 $lSince = microtime(
true );
478 return new ScopedCallback(
function()
use ( $key, $lSince, $expiry ) {
480 $age = ( microtime(
true ) - $lSince + $latency );
481 if ( ( $age + $latency ) >= $expiry ) {
482 $this->logger->warning(
"Lock for $key held too long ($age sec)." );
511 foreach ( $keys
as $key ) {
512 $val = $this->
get( $key );
513 if ( $val !==
false ) {
529 foreach ( $data
as $key =>
$value ) {
530 if ( !$this->
set( $key,
$value, $exptime ) ) {
544 if ( $this->
get( $key ) ===
false ) {
545 return $this->
set( $key,
$value, $exptime );
557 if ( !$this->
lock( $key ) ) {
560 $n = $this->
get( $key );
563 $this->
set( $key, max( 0, $n ) );
596 if ( $newValue ===
false ) {
598 $newValue = $this->
add( $key, (
int)$init, $ttl ) ? $init :
false;
600 if ( $newValue ===
false ) {
622 $this->lastError = self::ERR_NONE;
631 $this->lastError = $err;
655 $this->busyCallbacks[] = $workCallback;
680 if ( $this->debugMode ) {
681 $this->logger->debug(
"{class} debug: $text", [
682 'class' => get_class( $this ),
693 if ( $exptime != 0 && $exptime < ( 10 * self::TTL_YEAR ) ) {
694 return time() + $exptime;
708 if ( $exptime >= ( 10 * self::TTL_YEAR ) ) {
710 if ( $exptime <= 0 ) {
740 $arg = str_replace(
':',
'%3A', $arg );
741 $key = $key .
':' . $arg;
743 return strtr( $key,
' ',
'_' );
774 return isset( $this->attrMap[$flag] ) ? $this->attrMap[$flag] : self::QOS_UNKNOWN;
785 foreach ( $bags
as $bag ) {
786 foreach ( $bag->attrMap
as $attr => $rank ) {
787 if ( isset( $map[$attr] ) ) {
788 $map[$attr] = min( $map[$attr], $rank );
clearLastError()
Clear the "last error" registry.
the array() calling protocol came about after MediaWiki 1.4rc1.
getWithToken($key, &$casToken, $flags=0)
trackDuplicateKeys($key)
Track the number of times that a given key has been used.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
callback null $asyncHandler
getScopedLock($key, $timeout=6, $expiry=30, $rclass= '')
Get a lightweight exclusive self-unlocking lock.
lock($key, $timeout=6, $expiry=6, $rclass= '')
Acquire an advisory lock on a key string.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
incrWithInit($key, $ttl, $value=1, $init=1)
Increase stored value of $key by $value while preserving its TTL.
set($key, $value, $exptime=0, $flags=0)
Set an item.
getWithSetCallback($key, $ttl, $callback, $flags=0)
Get an item with the given key, regenerating and setting it if not found.
deleteObjectsExpiringBefore($date, $progressCallback=false)
Delete all objects expiring before a certain date.
modifySimpleRelayEvent(array $event)
Modify a cache update operation array for EventRelayer::notify()
getLastError()
Get the "last error" registered; clearLastError() should be called manually.
mergeViaCas($key, $callback, $exptime=0, $attempts=10)
__construct(array $params=[])
$params include:
callable[] $busyCallbacks
convertExpiry($exptime)
Convert an optionally relative time to an absolute time.
array $duplicateKeyLookups
add($key, $value, $exptime=0)
getMulti(array $keys, $flags=0)
Get an associative array containing the item for each of the keys that have items.
merge($key, callable $callback, $exptime=0, $attempts=10, $flags=0)
Merge changes into the existing cache value (possibly creating a new one)
incr($key, $value=1)
Increase stored value of $key by $value while preserving its TTL.
integer $syncTimeout
Seconds.
const WRITE_SYNC
Bitfield constants for set()/merge()
const ERR_NONE
Possible values for getLastError()
const READ_LATEST
Bitfield constants for get()/getMulti()
mergeFlagMaps(array $bags)
Merge the flag maps of one or more BagOStuff objects into a "lowest common denominator" map...
integer[] $attrMap
Map of (ATTR_* class constant => QOS_* class constant)
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
setMulti(array $data, $exptime=0)
Batch insertion.
mergeViaLock($key, $callback, $exptime=0, $attempts=10, $flags=0)
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
decr($key, $value=1)
Decrease stored value of $key by $value while preserving its TTL.
changeTTL($key, $expiry=0)
Reset the TTL on a key if it exists.
setLogger(LoggerInterface $logger)
convertToRelative($exptime)
Convert an optionally absolute expiry time to a relative time.
makeKey()
Make a cache key, scoped to this instance's keyspace.
addBusyCallback(callable $workCallback)
Let a callback be run to avoid wasting time on special blocking calls.
cas($casToken, $key, $value, $exptime=0)
Check and set an item.
Generic base class for storage interfaces.
array[] $locks
Lock tracking.
makeKeyInternal($keyspace, $args)
Construct a cache key.
setLastError($err)
Set the "last error" registry.
unlock($key)
Release an advisory lock on a key string.
isInteger($value)
Check if a value is an integer.
makeGlobalKey()
Make a global cache key.
integer $lastError
ERR_* class constant.