21 use Wikimedia\ObjectFactory;
46 const MAX_WRITE_DELAY = 5;
61 parent::__construct( $params );
63 if ( !isset( $params[
'writeFactory'] ) ) {
64 throw new InvalidArgumentException(
65 __METHOD__ .
': the "writeFactory" parameter is required' );
66 } elseif ( !isset( $params[
'readFactory'] ) ) {
67 throw new InvalidArgumentException(
68 __METHOD__ .
': the "readFactory" parameter is required' );
71 $this->consistencyWindow = $params[
'sessionConsistencyWindow'] ?? self::MAX_WRITE_DELAY;
72 $this->writeStore = ( $params[
'writeFactory'] instanceof
BagOStuff )
73 ? $params[
'writeFactory']
74 : ObjectFactory::getObjectFromSpec( $params[
'writeFactory'] );
75 $this->readStore = ( $params[
'readFactory'] instanceof
BagOStuff )
76 ? $params[
'readFactory']
77 : ObjectFactory::getObjectFromSpec( $params[
'readFactory'] );
78 $this->attrMap = $this->
mergeFlagMaps( [ $this->readStore, $this->writeStore ] );
82 parent::setDebug( $enabled );
83 $this->writeStore->setDebug( $enabled );
84 $this->readStore->setDebug( $enabled );
87 public function get( $key, $flags = 0 ) {
92 ? $this->writeStore->get( $key, $flags )
93 : $this->readStore->get( $key, $flags );
96 public function set( $key, $value, $exptime = 0, $flags = 0 ) {
99 return $this->writeStore->set( $key, $value, $exptime, $flags );
102 public function delete( $key, $flags = 0 ) {
105 return $this->writeStore->delete( $key, $flags );
108 public function add( $key, $value, $exptime = 0, $flags = 0 ) {
111 return $this->writeStore->add( $key, $value, $exptime, $flags );
114 public function merge( $key, callable $callback, $exptime = 0, $attempts = 10, $flags = 0 ) {
117 return $this->writeStore->merge( $key, $callback, $exptime, $attempts, $flags );
120 public function changeTTL( $key, $exptime = 0, $flags = 0 ) {
123 return $this->writeStore->changeTTL( $key, $exptime, $flags );
126 public function lock( $key, $timeout = 6, $expiry = 6, $rclass =
'' ) {
127 return $this->writeStore->lock( $key, $timeout, $expiry, $rclass );
131 return $this->writeStore->unlock( $key );
136 callable $progress =
null,
139 return $this->writeStore->deleteObjectsExpiringBefore( $timestamp, $progress, $limit );
147 ? $this->writeStore->getMulti(
$keys, $flags )
148 : $this->readStore->getMulti(
$keys, $flags );
151 public function setMulti( array $data, $exptime = 0, $flags = 0 ) {
154 return $this->writeStore->setMulti( $data, $exptime, $flags );
160 return $this->writeStore->deleteMulti(
$keys, $flags );
166 return $this->writeStore->changeTTLMulti(
$keys, $exptime, $flags );
169 public function incr( $key, $value = 1, $flags = 0 ) {
172 return $this->writeStore->incr( $key, $value, $flags );
175 public function decr( $key, $value = 1, $flags = 0 ) {
178 return $this->writeStore->decr( $key, $value, $flags );
181 public function incrWithInit( $key, $exptime, $value = 1, $init =
null, $flags = 0 ) {
184 return $this->writeStore->incrWithInit( $key, $exptime, $value, $init, $flags );
189 ? $this->writeStore->getLastError()
190 : $this->readStore->getLastError();
194 $this->writeStore->clearLastError();
195 $this->readStore->clearLastError();
199 return $this->writeStore->makeKeyInternal( ...func_get_args() );
202 public function makeKey( $class, ...$components ) {
203 return $this->writeStore->makeKey( ...func_get_args() );
207 return $this->writeStore->makeGlobalKey( ...func_get_args() );
211 $this->writeStore->addBusyCallback( $workCallback );
215 parent::setMockTime( $time );
216 $this->writeStore->setMockTime( $time );
217 $this->readStore->setMockTime( $time );
226 foreach ( $keys as $key ) {
227 $ts = $this->lastKeyWrites[$key] ?? 0;
228 if ( $ts && ( $now - $ts ) <= $this->consistencyWindow ) {
241 foreach ( $keys as $key ) {
242 unset( $this->lastKeyWrites[$key] );
243 $this->lastKeyWrites[$key] = $now;
246 if ( ( $now - reset( $this->lastKeyWrites ) ) > $this->consistencyWindow ) {
247 $this->lastKeyWrites = array_filter(
248 $this->lastKeyWrites,
249 function ( $timestamp ) use ( $now ) {
250 return ( ( $now - $timestamp ) <= $this->consistencyWindow );