24use Wikimedia\WaitConditionLoop;
43 private $duplicateKeyLookups = [];
45 private $reportDupes =
false;
47 private $dupeTrackScheduled =
false;
53 private const SEGMENT_COMPONENT =
'segment';
89 parent::__construct( $params );
91 if ( !empty( $params[
'reportDupes'] ) && $this->asyncHandler ) {
92 $this->reportDupes =
true;
96 $this->segmentationSize = $params[
'segmentationSize'] ?? 8388608;
98 $this->segmentedValueMaxSize = $params[
'segmentedValueMaxSize'] ?? 67108864;
114 public function get( $key, $flags = 0 ) {
115 $this->trackDuplicateKeys( $key );
124 private function trackDuplicateKeys( $key ) {
125 if ( !$this->reportDupes ) {
129 if ( !isset( $this->duplicateKeyLookups[$key] ) ) {
132 $this->duplicateKeyLookups[$key] = 0;
134 $this->duplicateKeyLookups[$key] += 1;
136 if ( $this->dupeTrackScheduled ===
false ) {
137 $this->dupeTrackScheduled =
true;
139 call_user_func( $this->asyncHandler,
function () {
140 $dups = array_filter( $this->duplicateKeyLookups );
141 foreach ( $dups as $key => $count ) {
142 $this->logger->warning(
143 'Duplicate get(): "{key}" fetched {count} times',
145 [
'key' => $key,
'count' => $count + 1, ]
163 abstract protected function doGet( $key, $flags = 0, &$casToken =
null );
174 public function set( $key, $value, $exptime = 0, $flags = 0 ) {
177 return $ok ? $this->
doSet( $key, $entry, $exptime, $flags ) :
false;
189 abstract protected function doSet( $key, $value, $exptime = 0, $flags = 0 );
202 public function delete( $key, $flags = 0 ) {
203 if ( !$this->
fieldHasFlags( $flags, self::WRITE_PRUNE_SEGMENTS ) ) {
204 return $this->
doDelete( $key, $flags );
207 $mainValue = $this->
doGet( $key, self::READ_LATEST );
208 if ( !$this->
doDelete( $key, $flags ) ) {
217 $orderedKeys = array_map(
218 function ( $segmentHash ) use ( $key ) {
219 return $this->
makeGlobalKey( self::SEGMENT_COMPONENT, $key, $segmentHash );
224 return $this->
deleteMulti( $orderedKeys, $flags & ~self::WRITE_PRUNE_SEGMENTS );
234 abstract protected function doDelete( $key, $flags = 0 );
236 public function add( $key, $value, $exptime = 0, $flags = 0 ) {
237 $entry = $this->makeValueOrSegmentList( $key, $value, $exptime, $flags, $ok );
239 return $ok ? $this->doAdd( $key, $entry, $exptime, $flags ) :
false;
251 abstract protected function doAdd( $key, $value, $exptime = 0, $flags = 0 );
269 public function merge( $key, callable $callback, $exptime = 0, $attempts = 10, $flags = 0 ) {
270 return $this->mergeViaCas( $key, $callback, $exptime, $attempts, $flags );
282 final protected function mergeViaCas( $key, callable $callback, $exptime, $attempts, $flags ) {
283 $attemptsLeft = $attempts;
285 $token = self::PASS_BY_REF;
287 $watchPoint = $this->watchErrors();
288 $currentValue = $this->resolveSegments(
290 $this->doGet( $key, $flags, $token )
292 if ( $this->getLastError( $watchPoint ) ) {
294 $this->logger->warning(
295 __METHOD__ .
' failed due to read I/O error on get() for {key}.',
303 $value = $callback( $this, $key, $currentValue, $exptime );
304 $keyWasNonexistant = ( $currentValue === false );
305 $valueMatchesOldValue = ( $value === $currentValue );
307 unset( $currentValue );
309 $watchPoint = $this->watchErrors();
310 if ( $value ===
false || $exptime < 0 ) {
313 } elseif ( $valueMatchesOldValue && $attemptsLeft !== $attempts ) {
316 } elseif ( $keyWasNonexistant ) {
318 $success = $this->add( $key, $value, $exptime, $flags );
321 $success = $this->cas( $token, $key, $value, $exptime, $flags );
323 if ( $this->getLastError( $watchPoint ) ) {
325 $this->logger->warning(
326 __METHOD__ .
' failed due to write I/O error for {key}.',
333 }
while ( !
$success && --$attemptsLeft );
348 protected function cas( $casToken, $key, $value, $exptime = 0, $flags = 0 ) {
349 if ( $casToken ===
null ) {
350 $this->logger->warning(
351 __METHOD__ .
' got empty CAS token for {key}.',
359 $entry = $this->makeValueOrSegmentList( $key, $value, $exptime, $flags, $ok );
361 return $ok ? $this->doCas( $casToken, $key, $entry, $exptime, $flags ) :
false;
374 protected function doCas( $casToken, $key, $value, $exptime = 0, $flags = 0 ) {
376 if ( !$this->lock( $key, 0 ) ) {
381 $curCasToken = self::PASS_BY_REF;
382 $watchPoint = $this->watchErrors();
383 $exists = ( $this->doGet( $key, self::READ_LATEST, $curCasToken ) !== false );
384 if ( $this->getLastError( $watchPoint ) ) {
387 $this->logger->warning(
388 __METHOD__ .
' failed due to write I/O error for {key}.',
391 } elseif ( $exists && $this->tokensMatch( $casToken, $curCasToken ) ) {
392 $success = $this->doSet( $key, $value, $exptime, $flags );
397 __METHOD__ .
' failed due to race condition for {key}.',
398 [
'key' => $key,
'key_exists' => $exists ]
402 $this->unlock( $key );
413 $type = gettype( $value );
416 if (
$type !== gettype( $otherValue ) ) {
421 if (
$type ===
'array' ||
$type ===
'object' ) {
425 return ( $value === $otherValue );
445 public function changeTTL( $key, $exptime = 0, $flags = 0 ) {
446 return $this->doChangeTTL( $key, $exptime, $flags );
457 if ( !$this->lock( $key, 0 ) ) {
461 $expiry = $this->getExpirationAsTimestamp( $exptime );
462 $delete = ( $expiry != self::TTL_INDEFINITE && $expiry < $this->getCurrentTime() );
465 $blob = $this->doGet( $key, self::READ_LATEST );
468 $ok = $this->doDelete( $key, $flags );
470 $ok = $this->doSet( $key,
$blob, $exptime, $flags );
476 $this->unlock( $key );
481 public function incrWithInit( $key, $exptime, $step = 1, $init =
null, $flags = 0 ) {
483 $init = is_int( $init ) ? $init : $step;
485 return $this->doIncrWithInit( $key, $exptime, $step, $init, $flags );
496 abstract protected function doIncrWithInit( $key, $exptime, $step, $init, $flags );
505 public function lock( $key, $timeout = 6, $exptime = 6, $rclass =
'' ) {
506 $exptime = min( $exptime ?: INF, self::TTL_DAY );
510 if ( isset( $this->locks[$key] ) ) {
512 if ( $rclass !=
'' && $this->locks[$key][self::LOCK_RCLASS] === $rclass ) {
513 ++$this->locks[$key][self::LOCK_DEPTH];
518 $lockTsUnix = $this->doLock( $key, $timeout, $exptime );
519 if ( $lockTsUnix !==
null ) {
520 $this->locks[$key] = [
521 self::LOCK_RCLASS => $rclass,
522 self::LOCK_DEPTH => 1,
523 self::LOCK_TIME => $lockTsUnix,
524 self::LOCK_EXPIRY => $lockTsUnix + $exptime
541 protected function doLock( $key, $timeout, $exptime ) {
545 $loop =
new WaitConditionLoop(
546 function () use ( $key, $exptime, $fname, &$lockTsUnix ) {
547 $watchPoint = $this->watchErrors();
548 if ( $this->add( $this->makeLockKey( $key ), 1, $exptime ) ) {
549 $lockTsUnix = microtime(
true );
552 return WaitConditionLoop::CONDITION_REACHED;
553 } elseif ( $this->getLastError( $watchPoint ) ) {
554 $this->logger->warning(
555 "$fname failed due to I/O error for {key}.",
560 return WaitConditionLoop::CONDITION_ABORTED;
563 return WaitConditionLoop::CONDITION_CONTINUE;
567 $code = $loop->invoke();
569 if ( $code === $loop::CONDITION_TIMED_OUT ) {
570 $this->logger->warning(
571 "$fname failed due to timeout for {key}.",
572 [
'key' => $key,
'timeout' => $timeout ]
588 if ( isset( $this->locks[$key] ) ) {
589 if ( --$this->locks[$key][self::LOCK_DEPTH] > 0 ) {
592 $released = $this->doUnlock( $key );
593 unset( $this->locks[$key] );
595 $this->logger->warning(
596 __METHOD__ .
' failed to release lock for {key}.',
602 $this->logger->warning(
603 __METHOD__ .
' no lock to release for {key}.',
619 $curTTL = $this->locks[$key][self::LOCK_EXPIRY] - $this->getCurrentTime();
625 if ( ( $curTTL - $maxOWD ) > 0 ) {
628 $released = $this->doDelete( $this->makeLockKey( $key ) );
633 $this->logger->warning(
634 "Lock for {key} held too long ({age} sec).",
635 [
'key' => $key,
'curTTL' => $curTTL ]
652 callable $progress =
null,
666 $foundByKey = $this->doGetMulti(
$keys, $flags );
669 foreach (
$keys as $key ) {
671 if ( array_key_exists( $key, $foundByKey ) ) {
673 $value = $this->resolveSegments( $key, $foundByKey[$key] );
674 if ( $value !==
false ) {
691 foreach (
$keys as $key ) {
692 $val = $this->doGet( $key, $flags );
693 if ( $val !==
false ) {
712 public function setMulti( array $valueByKey, $exptime = 0, $flags = 0 ) {
713 if ( $this->fieldHasFlags( $flags, self::WRITE_ALLOW_SEGMENTS ) ) {
714 throw new InvalidArgumentException( __METHOD__ .
' got WRITE_ALLOW_SEGMENTS' );
717 return $this->doSetMulti( $valueByKey, $exptime, $flags );
726 protected function doSetMulti( array $data, $exptime = 0, $flags = 0 ) {
728 foreach ( $data as $key => $value ) {
729 $res = $this->doSet( $key, $value, $exptime, $flags ) &&
$res;
746 if ( $this->fieldHasFlags( $flags, self::WRITE_PRUNE_SEGMENTS ) ) {
747 throw new InvalidArgumentException( __METHOD__ .
' got WRITE_PRUNE_SEGMENTS' );
750 return $this->doDeleteMulti(
$keys, $flags );
760 foreach (
$keys as $key ) {
761 $res = $this->doDelete( $key, $flags ) &&
$res;
777 return $this->doChangeTTLMulti(
$keys, $exptime, $flags );
788 foreach (
$keys as $key ) {
789 $res = $this->doChangeTTL( $key, $exptime, $flags ) &&
$res;
808 $orderedKeys = array_map(
809 function ( $segmentHash ) use ( $key ) {
810 return $this->makeGlobalKey( self::SEGMENT_COMPONENT, $key, $segmentHash );
815 $segmentsByKey = $this->doGetMulti( $orderedKeys );
818 foreach ( $orderedKeys as $segmentKey ) {
819 if ( isset( $segmentsByKey[$segmentKey] ) ) {
820 $parts[] = $segmentsByKey[$segmentKey];
827 return $this->
unserialize( implode(
'', $parts ) );
849 private function useSegmentationWrapper( $value, $flags ) {
851 $this->segmentationSize === INF ||
852 !$this->fieldHasFlags( $flags, self::WRITE_ALLOW_SEGMENTS )
857 if ( is_string( $value ) ) {
858 return ( strlen( $value ) >= $this->segmentationSize );
861 if ( is_array( $value ) ) {
863 foreach ( array_slice( $value, 0, 4 ) as $v ) {
864 if ( is_string( $v ) && strlen( $v ) >= $this->segmentationSize ) {
889 if ( $this->useSegmentationWrapper( $value, $flags ) ) {
890 $segmentSize = $this->segmentationSize;
891 $maxTotalSize = $this->segmentedValueMaxSize;
892 $serialized = $this->getSerialized( $value, $key );
894 if ( $size > $maxTotalSize ) {
895 $this->logger->warning(
896 "Value for {key} exceeds $maxTotalSize bytes; cannot segment.",
903 $count = intdiv( $size, $segmentSize ) + ( ( $size % $segmentSize ) ? 1 : 0 );
904 for ( $i = 0; $i < $count; ++$i ) {
905 $segment = substr(
$serialized, $i * $segmentSize, $segmentSize );
906 $hash = sha1( $segment );
907 $chunkKey = $this->makeGlobalKey( self::SEGMENT_COMPONENT, $key, $hash );
908 $chunksByKey[$chunkKey] = $segment;
909 $segmentHashes[] = $hash;
911 $flags &= ~self::WRITE_ALLOW_SEGMENTS;
912 $ok = $this->setMulti( $chunksByKey, $exptime, $flags );
926 return ( $exptime !== self::TTL_INDEFINITE && $exptime < ( 10 * self::TTL_YEAR ) );
943 if ( $exptime == self::TTL_INDEFINITE ) {
947 return $this->isRelativeExpiration( $exptime )
948 ? intval( $this->getCurrentTime() + $exptime )
967 if ( $exptime == self::TTL_INDEFINITE ) {
971 return $this->isRelativeExpiration( $exptime )
973 : (int)max( $exptime - $this->getCurrentTime(), 1 );
983 if ( is_int( $value ) ) {
985 } elseif ( !is_string( $value ) ) {
989 $integer = (int)$value;
991 return ( $value === (
string)$integer );
995 return $this->makeKeyInternal( self::GLOBAL_KEYSPACE, func_get_args() );
998 public function makeKey( $collection, ...$components ) {
999 return $this->makeKeyInternal( $this->keyspace, func_get_args() );
1003 $components = $this->componentsFromGenericKey( $key );
1004 if ( count( $components ) < 2 ) {
1009 $keyspace = array_shift( $components );
1011 return $this->makeKeyInternal( $keyspace, $components );
1015 return $this->attrMap[$flag] ?? self::QOS_UNKNOWN;
1019 return $this->segmentationSize;
1023 return $this->segmentedValueMaxSize;
1027 $this->preparedValues = [];
1030 foreach ( $valueByKey as $key => $value ) {
1031 if ( $value ===
false ) {
1040 $this->preparedValues[$key] = [ $value,
$serialized ];
1058 if ( array_key_exists( $key, $this->preparedValues ) ) {
1059 list( $prepValue, $prepSerialized ) = $this->preparedValues[$key];
1065 if ( $prepValue === $value ) {
1066 unset( $this->preparedValues[$key] );
1068 return $prepSerialized;
1072 $this->checkValueSerializability( $value, $key );
1087 if ( is_string( $value ) ) {
1089 return strlen( $value ) + 5;
1104 foreach ( $values as $value ) {
1105 $sizes[] = $this->guessSerialValueSize( $value );
1131 private function checkValueSerializability( $value, $key ) {
1132 if ( is_array( $value ) ) {
1133 $this->checkIterableMapSerializability( $value, $key );
1134 } elseif ( is_object( $value ) ) {
1136 if ( $value instanceof stdClass ) {
1137 $this->checkIterableMapSerializability( $value, $key );
1138 } elseif ( !( $value instanceof JsonSerializable ) ) {
1139 $this->logger->warning(
1140 "{class} value for '{cachekey}'; serialization is suspect.",
1141 [
'cachekey' => $key,
'class' => get_class( $value ) ]
1151 private function checkIterableMapSerializability( $value, $key ) {
1152 foreach ( $value as $index => $entry ) {
1153 if ( is_object( $entry ) ) {
1156 !( $entry instanceof stdClass ) &&
1157 !( $entry instanceof JsonSerializable )
1159 $this->logger->warning(
1160 "{class} value for '{cachekey}' at '$index'; serialization is suspect.",
1161 [
'cachekey' => $key,
'class' => get_class( $entry ) ]
1176 return is_int( $value ) ? $value :
serialize( $value );
1185 return $this->isInteger( $value ) ? (int)$value :
unserialize( $value );
1192 $this->logger->debug(
"{class} debug: $text", [
'class' => static::class ] );
1203 $deltasByMetric = [];
1205 foreach ( $keyInfo as $indexOrKey => $keyOrSizes ) {
1206 if ( is_array( $keyOrSizes ) ) {
1208 list( $sPayloadSize, $rPayloadSize ) = $keyOrSizes;
1216 $prefix = $this->determineKeyPrefixForStats( $key );
1218 if ( $op === self::METRIC_OP_GET ) {
1220 $name =
"{$prefix}.{$op}_" . ( $rPayloadSize ===
false ?
'miss_rate' :
'hit_rate' );
1223 $name =
"{$prefix}.{$op}_call_rate";
1225 $deltasByMetric[$name] = ( $deltasByMetric[$name] ?? 0 ) + 1;
1227 if ( $sPayloadSize > 0 ) {
1228 $name =
"{$prefix}.{$op}_bytes_sent";
1229 $deltasByMetric[$name] = ( $deltasByMetric[$name] ?? 0 ) + $sPayloadSize;
1232 if ( $rPayloadSize > 0 ) {
1233 $name =
"{$prefix}.{$op}_bytes_read";
1234 $deltasByMetric[$name] = ( $deltasByMetric[$name] ?? 0 ) + $rPayloadSize;
1238 foreach ( $deltasByMetric as $name => $delta ) {
1239 $this->stats->updateCount( $name, $delta );
unserialize( $serialized)
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Logs a warning that a deprecated feature was used.
Class representing a cache/ephemeral data store.
fieldHasFlags( $field, $flags)
Storage medium specific cache for storing items (e.g.
doSet( $key, $value, $exptime=0, $flags=0)
Set an item.
int $segmentationSize
Bytes; chunk size of segmented cache values.
cas( $casToken, $key, $value, $exptime=0, $flags=0)
Set an item if the current CAS token matches the provided CAS token.
doDeleteMulti(array $keys, $flags=0)
const PASS_BY_REF
Idiom for doGet() to return extra information by reference.
setMulti(array $valueByKey, $exptime=0, $flags=0)
Batch insertion/replace.
const METRIC_OP_CHANGE_TTL
guessSerialValueSize( $value, $depth=0, &$loops=0)
Estimate the size of a variable once serialized.
doChangeTTLMulti(array $keys, $exptime, $flags=0)
getExpirationAsTimestamp( $exptime)
Convert an optionally relative timestamp to an absolute time.
getMulti(array $keys, $flags=0)
Get an associative array containing the item for each of the keys that have items.
add( $key, $value, $exptime=0, $flags=0)
Insert an item if it does not already exist.
deleteMulti(array $keys, $flags=0)
Batch deletion.
tokensMatch( $value, $otherValue)
addBusyCallback(callable $workCallback)
Let a callback be run to avoid wasting time on special blocking calls.
getSerialized( $value, $key)
Get the serialized form a value, using any applicable prepared value.
doSetMulti(array $data, $exptime=0, $flags=0)
doChangeTTL( $key, $exptime, $flags)
makeKey( $collection,... $components)
Make a cache key for the global keyspace and given components.
merge( $key, callable $callback, $exptime=0, $attempts=10, $flags=0)
Merge changes into the existing cache value (possibly creating a new one)
unlock( $key)
Release an advisory lock on a key string.
doGetMulti(array $keys, $flags=0)
Get an associative array containing the item for each of the keys that have items.
doIncrWithInit( $key, $exptime, $step, $init, $flags)
updateOpStats(string $op, array $keyInfo)
array< string, array > $locks
Map of (key => (class, depth, expiry)
doCas( $casToken, $key, $value, $exptime=0, $flags=0)
Set an item if the current CAS token matches the provided CAS token.
__construct(array $params=[])
doDelete( $key, $flags=0)
Delete an item.
doLock( $key, $timeout, $exptime)
convertGenericKey( $key)
Convert a "generic" reversible cache key into one for this cache.
mergeViaCas( $key, callable $callback, $exptime, $attempts, $flags)
doAdd( $key, $value, $exptime=0, $flags=0)
Insert an item if it does not already exist.
getSegmentedValueMaxSize()
getExpirationAsTTL( $exptime)
Convert an optionally absolute expiry time to a relative time.
isRelativeExpiration( $exptime)
resolveSegments( $key, $mainValue)
Get and reassemble the chunks of blob at the given key.
changeTTLMulti(array $keys, $exptime, $flags=0)
Change the expiration of multiple keys that exist.
changeTTL( $key, $exptime=0, $flags=0)
Change the expiration on a key if it exists.
incrWithInit( $key, $exptime, $step=1, $init=null, $flags=0)
Increase the value of the given key (no TTL change) if it exists or create it otherwise.
isInteger( $value)
Check if a value is an integer.
makeGlobalKey( $collection,... $components)
Make a cache key for the default keyspace and given components.
lock( $key, $timeout=6, $exptime=6, $rclass='')
makeValueOrSegmentList( $key, $value, $exptime, $flags, &$ok)
Make the entry to store at a key (inline or segment list), storing any segments.
deleteObjectsExpiringBefore( $timestamp, callable $progress=null, $limit=INF, string $tag=null)
Delete all objects expiring before a certain date.
int $segmentedValueMaxSize
Bytes; maximum total size of a segmented cache value.
guessSerialSizeOfValues(array $values)
Estimate the size of a each variable once serialized.
array[] $preparedValues
Map of (key => (PHP variable value, serialized value))
setNewPreparedValues(array $valueByKey)
Stage a set of new key values for storage and estimate the amount of bytes needed.
doGet( $key, $flags=0, &$casToken=null)
Get an item.
static newSegmented(array $segmentHashList)
static isSegmented( $value)
static isUnified( $value)
foreach( $res as $row) $serialized