56 $params[
'segmentationSize'] = $params[
'segmentationSize'] ?? INF;
57 parent::__construct( $params );
59 $this->token = microtime(
true ) .
':' . mt_rand();
60 $maxKeys = $params[
'maxKeys'] ?? INF;
61 if ( $maxKeys !== INF && ( !is_int( $maxKeys ) || $maxKeys <= 0 ) ) {
62 throw new InvalidArgumentException(
'$maxKeys parameter must be above zero' );
64 $this->maxCacheKeys = $maxKeys;
66 $this->attrMap[self::ATTR_DURABILITY] = self::QOS_DURABILITY_SCRIPT;
69 protected function doGet( $key, $flags = 0, &$casToken =
null ) {
70 $getToken = ( $casToken === self::PASS_BY_REF );
78 $temp = $this->bag[$key];
79 unset( $this->bag[$key] );
80 $this->bag[$key] = $temp;
83 $casToken = $this->bag[$key][self::KEY_CAS];
86 return $this->bag[$key][self::KEY_VAL];
89 protected function doSet( $key, $value, $exptime = 0, $flags = 0 ) {
91 unset( $this->bag[$key] );
93 self::KEY_VAL => $value,
95 self::KEY_CAS => $this->token .
':' . ++self::$casCounter
98 if ( count( $this->bag ) > $this->maxCacheKeys ) {
100 $evictKey = key( $this->bag );
101 unset( $this->bag[$evictKey] );
107 protected function doAdd( $key, $value, $exptime = 0, $flags = 0 ) {
108 if ( $this->
hasKey( $key ) && !$this->
expire( $key ) ) {
112 return $this->
doSet( $key, $value, $exptime, $flags );
116 unset( $this->bag[$key] );
121 public function incr( $key, $value = 1, $flags = 0 ) {
122 $n = $this->
get( $key );
124 $n = max( $n + (
int)$value, 0 );
125 $this->bag[$key][self::KEY_VAL] = $n;
133 public function decr( $key, $value = 1, $flags = 0 ) {
134 return $this->
incr( $key, -$value, $flags );
149 $et = $this->bag[$key][self::KEY_EXP];
150 if ( $et == self::TTL_INDEFINITE || $et > $this->
getCurrentTime() ) {
162 foreach ( $valueByKey as $value ) {
177 return isset( $this->bag[$key] );
genericKeyFromComponents(... $components)
At a minimum, there must be a keyspace and collection name component.
string $keyspace
Default keyspace; used by makeKey()
Simple store for keeping values in an associative array for the current process.
int double $maxCacheKeys
Max entries allowed, INF for unlimited.
string $token
CAS token prefix for this instance.
setNewPreparedValues(array $valueByKey)
Make a "generic" reversible cache key from the given components.
convertGenericKey( $key)
Convert a "generic" reversible cache key into one for this cache.
clear()
Clear all values in cache.
decr( $key, $value=1, $flags=0)
Decrease stored value of $key by $value while preserving its TTL.
makeKeyInternal( $keyspace, $components)
Make a cache key for the given keyspace and components.
incr( $key, $value=1, $flags=0)
Increase stored value of $key by $value while preserving its TTL.
hasKey( $key)
Does this bag have a non-null value for the given key?
doAdd( $key, $value, $exptime=0, $flags=0)
Insert an item if it does not already exist.
doDelete( $key, $flags=0)
Delete an item.
doGet( $key, $flags=0, &$casToken=null)
doSet( $key, $value, $exptime=0, $flags=0)
Set an item.
static int $casCounter
CAS token counter.
Storage medium specific cache for storing items (e.g.
guessSerialValueSize( $value, $depth=0, &$loops=0)
Estimate the size of a variable once serialized.
getExpirationAsTimestamp( $exptime)
Convert an optionally relative timestamp to an absolute time.
isInteger( $value)
Check if a value is an integer.