MediaWiki REL1_35
SqlBagOStuff Class Reference

Class to store objects in the database. More...

Inheritance diagram for SqlBagOStuff:
Collaboration diagram for SqlBagOStuff:

Public Member Functions

 __construct ( $params)
 Constructor.
 
 changeTTLMulti (array $keys, $exptime, $flags=0)
 Change the expiration of multiple keys that exist.
 
 createTables ()
 Create the shard tables on all databases (e.g.
 
 decr ( $key, $value=1, $flags=0)
 Decrease stored value of $key by $value while preserving its TTL.
 
 deleteAll ()
 Delete content of shard tables in every server.
 
 deleteObjectsExpiringBefore ( $timestamp, callable $progress=null, $limit=INF)
 Delete all objects expiring before a certain date.
 
 expireAll ()
 
 incr ( $key, $step=1, $flags=0)
 Increase stored value of $key by $value while preserving its TTL.
 
 lock ( $key, $timeout=6, $expiry=6, $rclass='')
 Acquire an advisory lock on a key string.
 
 makeKeyInternal ( $keyspace, $args)
 Construct a cache key.
 
 unlock ( $key)
 Release an advisory lock on a key string.
 
- Public Member Functions inherited from MediumSpecificBagOStuff
 __construct (array $params=[])
 
 add ( $key, $value, $exptime=0, $flags=0)
 Insert an item if it does not already exist.
 
 addBusyCallback (callable $workCallback)
 Let a callback be run to avoid wasting time on special blocking calls.
 
 changeTTL ( $key, $exptime=0, $flags=0)
 Change the expiration on a key if it exists.
 
 clearLastError ()
 Clear the "last error" registry.
 
 delete ( $key, $flags=0)
 Delete an item.
 
 deleteMulti (array $keys, $flags=0)
 Batch deletion.
 
 get ( $key, $flags=0)
 Get an item with the given key.
 
 getLastError ()
 Get the "last error" registered; clearLastError() should be called manually.
 
 getMulti (array $keys, $flags=0)
 Get an associative array containing the item for each of the keys that have items.
 
 getQoS ( $flag)
 
 getSegmentationSize ()
 
 getSegmentedValueMaxSize ()
 
 incrWithInit ( $key, $exptime, $value=1, $init=null, $flags=0)
 Increase the value of the given key (no TTL change) if it exists or create it otherwise.
 
 makeGlobalKey ( $class,... $components)
 Make a global cache key.
 
 makeKey ( $class,... $components)
 Make a cache key, scoped to this instance's keyspace.
 
 merge ( $key, callable $callback, $exptime=0, $attempts=10, $flags=0)
 Merge changes into the existing cache value (possibly creating a new one)
 
 set ( $key, $value, $exptime=0, $flags=0)
 Set an item.
 
 setMulti (array $data, $exptime=0, $flags=0)
 Batch insertion/replace.
 
 setNewPreparedValues (array $valueByKey)
 Prepare values for storage and get their serialized sizes, or, estimate those sizes.
 
- Public Member Functions inherited from BagOStuff
 getCurrentTime ()
 
 getLogger ()
 
 getScopedLock ( $key, $timeout=6, $expiry=30, $rclass='')
 Get a lightweight exclusive self-unlocking lock.
 
 getWithSetCallback ( $key, $exptime, $callback, $flags=0)
 Get an item with the given key, regenerating and setting it if not found.
 
 setDebug ( $enabled)
 
 setLogger (LoggerInterface $logger)
 
 setMockTime (&$time)
 

Protected Member Functions

 doAdd ( $key, $value, $exptime=0, $flags=0)
 Insert an item if it does not already exist.
 
 doCas ( $casToken, $key, $value, $exptime=0, $flags=0)
 Check and set an item.
 
 doChangeTTL ( $key, $exptime, $flags)
 
 doDelete ( $key, $flags=0)
 Delete an item.
 
 doDeleteMulti (array $keys, $flags=0)
 
 doGet ( $key, $flags=0, &$casToken=null)
 
 doGetMulti (array $keys, $flags=0)
 Get an associative array containing the item for each of the keys that have items.
 
 doSet ( $key, $value, $exptime=0, $flags=0)
 Set an item.
 
 doSetMulti (array $data, $exptime=0, $flags=0)
 
 serialize ( $data)
 Serialize an object and, if possible, compress the representation.
 
 unserialize ( $serial)
 Unserialize and, if necessary, decompress an object.
 
- Protected Member Functions inherited from MediumSpecificBagOStuff
 cas ( $casToken, $key, $value, $exptime=0, $flags=0)
 Check and set an item.
 
 debug ( $text)
 
 getExpirationAsTimestamp ( $exptime)
 Convert an optionally relative timestamp to an absolute time.
 
 getExpirationAsTTL ( $exptime)
 Convert an optionally absolute expiry time to a relative time.
 
 getSerialized ( $value, $key)
 Get the serialized form a value, using any applicable prepared value.
 
 guessSerialValueSize ( $value, $depth=0, &$loops=0)
 Estimate the size of a variable once serialized.
 
 isInteger ( $value)
 Check if a value is an integer.
 
 isRelativeExpiration ( $exptime)
 
 makeValueOrSegmentList ( $key, $value, $exptime, $flags)
 Determine the entry (inline or segment list) to store under a key to save the value.
 
 mergeViaCas ( $key, callable $callback, $exptime, $attempts, $flags)
 
 resolveSegments ( $key, $mainValue)
 Get and reassemble the chunks of blob at the given key.
 
 setLastError ( $err)
 Set the "last error" registry.
 
- Protected Member Functions inherited from BagOStuff
 fieldHasFlags ( $field, $flags)
 
 mergeFlagMaps (array $bags)
 Merge the flag maps of one or more BagOStuff objects into a "lowest common denominator" map.
 

Protected Attributes

Exception[] $connFailureErrors = []
 Map of (shard index => Exception)
 
float[] $connFailureTimes = []
 Map of (shard index => UNIX timestamps)
 
IMaintainableDatabase[] $conns
 Map of (shard index => DB handle)
 
ILoadBalancer null $globalKeyLb
 
int $lastGarbageCollect = 0
 UNIX timestamp.
 
ILoadBalancer null $localKeyLb
 
int $numServerShards
 Number of database servers shards (e.g.
 
int $numTableShards = 1
 
int $purgeLimit = 100
 
int $purgePeriod = 10
 
bool $replicaOnly
 
array[] $serverInfos = []
 (server index => server config)
 
string[] $serverTags = []
 (server index => tag/host name)
 
string $tableName = 'objectcache'
 
- Protected Attributes inherited from MediumSpecificBagOStuff
callable[] $busyCallbacks = []
 
string $keyspace = 'local'
 
int $lastError = self::ERR_NONE
 ERR_* class constant.
 
array[] $locks = []
 Lock tracking.
 
array[] $preparedValues = []
 Map of (key => (PHP variable value, serialized value))
 
int $segmentationSize
 Bytes; chunk size of segmented cache values.
 
int $segmentedValueMaxSize
 Bytes; maximum total size of a segmented cache value.
 
int $syncTimeout
 Seconds.
 
- Protected Attributes inherited from BagOStuff
callable null $asyncHandler
 
int[] $attrMap = []
 Map of (ATTR_* class constant => QOS_* class constant)
 
bool $debugMode = false
 
LoggerInterface $logger
 

Private Member Functions

 deleteServerObjectsExpiringBefore (IDatabase $db, $timestamp, $progressCallback, $limit, $serversDoneCount=0, &$keysDeletedCount=0)
 
 fetchBlobMulti (array $keys)
 
 getConnection ( $shardIndex)
 Get a connection to the specified database.
 
 getConnectionFromServerInfo ( $shardIndex, array $server)
 
 getConnectionViaLoadBalancer ( $shardIndex)
 
 getKeyLocation ( $key)
 Get the server index and table name for a given key.
 
 getMaxDateTime ( $db)
 
 getServerShardIndexes ()
 
 getTableNameByShard ( $index)
 Get the table name for a given shard index.
 
 handleReadError (DBError $exception, $shardIndex)
 Handle a DBError which occurred during a read operation.
 
 handleWriteError (DBError $exception, $db, $shardIndex)
 Handle a DBQueryError which occurred during a write operation.
 
 initSqliteDatabase (IMaintainableDatabase $db)
 
 isExpired (IDatabase $db, $exptime)
 
 markServerDown (DBError $exception, $shardIndex)
 Mark a server down due to a DBConnectionError exception.
 
 modifyMulti (array $data, $exptime, $flags, $op)
 
 occasionallyGarbageCollect (IDatabase $db)
 
 setAndLogDBError (DBError $exception)
 
 silenceTransactionProfiler ()
 Silence the transaction profiler until the return value falls out of scope.
 
 updateTable ( $op, $db, $table, $tableKeys, $data, $dbExpiry)
 
 waitForReplication ( $shardIndex)
 Wait for replica DBs to catch up to the master DB.
 

Static Private Attributes

static int $GC_DELAY_SEC = 1
 
static string $OP_ADD = 'add'
 
static string $OP_DELETE = 'delete'
 
static string $OP_SET = 'set'
 
static string $OP_TOUCH = 'touch'
 

Additional Inherited Members

- Public Attributes inherited from BagOStuff
const READ_LATEST = 1
 Bitfield constants for get()/getMulti(); these are only advisory.
 
const READ_VERIFIED = 2
 
const WRITE_ALLOW_SEGMENTS = 16
 
const WRITE_BACKGROUND = 64
 
const WRITE_CACHE_ONLY = 8
 
const WRITE_PRUNE_SEGMENTS = 32
 
const WRITE_SYNC = 4
 Bitfield constants for set()/merge(); these are only advisory.
 

Detailed Description

Class to store objects in the database.

Definition at line 42 of file SqlBagOStuff.php.

Constructor & Destructor Documentation

◆ __construct()

SqlBagOStuff::__construct (   $params)

Constructor.

Parameters are:

  • server: Server config map for Database::factory() that describes the database to use for all key operations. This overrides "localKeyLB" and "globalKeyLB".
  • servers: Array of server config maps, each for Database::factory(), describing a set of database servers to distribute keys to. If this is specified, the "server" option will be ignored. If string keys are used, then they will be used for consistent hashing instead of the host name (from the server config). This is useful when a cluster is replicated to another site (with different host names) but each server has a corresponding replica in the other cluster.
  • localKeyLB: ObjectFactory::getObjectFromSpec array yeilding ILoadBalancer. This load balancer is used for local keys, e.g. those using makeKey(). This is overriden by 'server'/'servers'.
  • globalKeyLB: ObjectFactory::getObjectFromSpec array yeilding ILoadBalancer. This load balancer is used for local keys, e.g. those using makeGlobalKey(). This is overriden by 'server'/'servers'.
  • purgePeriod: The average number of object cache writes in between arbage collection operations, where expired entries are removed from the database. Or in other words, the reciprocal of the probability of purging on any given write. If this is set to zero, purging will never be done. [optional]
  • purgeLimit: Maximum number of rows to purge at once. [optional]
  • tableName: The table name to use, default is "objectcache". [optional]
  • shards: The number of tables to use for data storage on each server. If this is more than 1, table names will be formed in the style objectcacheNNN where NNN is the shard index, between 0 and shards-1. The number of digits will be the minimum number required to hold the largest shard index. Data will be distributed across all tables by key hash. This is for MySQL bugs 61735 https://bugs.mysql.com/bug.php?id=61735 and 61736 https://bugs.mysql.com/bug.php?id=61736. [optional]
  • replicaOnly: Whether to only use replica DBs and avoid triggering garbage collection logic of expired items. This only makes sense if the primary DB is used and only if get() calls will be used. This is used by ReplicatedBagOStuff. [optional]
  • syncTimeout: Max seconds to wait for replica DBs to catch up for WRITE_SYNC. [optional]
Parameters
array$params

Definition at line 127 of file SqlBagOStuff.php.

References $globalKeyLb.

Member Function Documentation

◆ changeTTLMulti()

SqlBagOStuff::changeTTLMulti ( array  $keys,
  $exptime,
  $flags = 0 
)

Change the expiration of multiple keys that exist.

Parameters
string[]$keysList of keys
int$exptimeTTL or UNIX timestamp
int$flagsBitfield of BagOStuff::WRITE_* constants (since 1.33)
Returns
bool Success
See also
BagOStuff::changeTTL()
Since
1.34

Reimplemented from MediumSpecificBagOStuff.

Definition at line 576 of file SqlBagOStuff.php.

References $keys, and modifyMulti().

◆ createTables()

SqlBagOStuff::createTables ( )

Create the shard tables on all databases (e.g.

via eval.php/shell.php)

Definition at line 1079 of file SqlBagOStuff.php.

References $numTableShards, getConnection(), getServerShardIndexes(), and getTableNameByShard().

◆ decr()

SqlBagOStuff::decr (   $key,
  $value = 1,
  $flags = 0 
)

Decrease stored value of $key by $value while preserving its TTL.

Parameters
string$key
int$valueValue to subtract from $key (default: 1) [optional]
int$flagsBit field of class WRITE_* constants [optional]
Returns
int|bool New value or false on failure

Reimplemented from BagOStuff.

Definition at line 572 of file SqlBagOStuff.php.

References incr().

◆ deleteAll()

SqlBagOStuff::deleteAll ( )

Delete content of shard tables in every server.

Return true if the operation is successful, false otherwise.

Returns
bool

Definition at line 766 of file SqlBagOStuff.php.

References $numTableShards, getConnection(), getServerShardIndexes(), getTableNameByShard(), handleWriteError(), and silenceTransactionProfiler().

◆ deleteObjectsExpiringBefore()

SqlBagOStuff::deleteObjectsExpiringBefore (   $timestamp,
callable  $progress = null,
  $limit = INF 
)

Delete all objects expiring before a certain date.

Parameters
string | int$timestampThe reference date in MW or TS_UNIX format
callable | null$progressOptional, a function which will be called regularly during long-running operations with the percentage progress as the first parameter. [optional]
int$limitMaximum number of keys to delete [default: INF]
Returns
bool Success; false if unimplemented

Reimplemented from MediumSpecificBagOStuff.

Definition at line 647 of file SqlBagOStuff.php.

References deleteServerObjectsExpiringBefore(), getConnection(), getServerShardIndexes(), handleWriteError(), and silenceTransactionProfiler().

Referenced by expireAll().

◆ deleteServerObjectsExpiringBefore()

SqlBagOStuff::deleteServerObjectsExpiringBefore ( IDatabase  $db,
  $timestamp,
  $progressCallback,
  $limit,
  $serversDoneCount = 0,
$keysDeletedCount = 0 
)
private
Parameters
IDatabase$db
string | int$timestamp
callable | null$progressCallback
int$limit
int$serversDoneCount
int&$keysDeletedCount
Exceptions
DBError

Definition at line 691 of file SqlBagOStuff.php.

References $keys, $numServerShards, $res, Wikimedia\Rdbms\IDatabase\addQuotes(), Wikimedia\Rdbms\IDatabase\affectedRows(), Wikimedia\Rdbms\IDatabase\delete(), getTableNameByShard(), Wikimedia\Rdbms\IDatabase\select(), and Wikimedia\Rdbms\IDatabase\timestamp().

Referenced by deleteObjectsExpiringBefore(), and occasionallyGarbageCollect().

◆ doAdd()

SqlBagOStuff::doAdd (   $key,
  $value,
  $exptime = 0,
  $flags = 0 
)
protected

Insert an item if it does not already exist.

Parameters
string$key
mixed$value
int$exptime
int$flagsBitfield of BagOStuff::WRITE_* constants (since 1.33)
Returns
bool Success

Reimplemented from MediumSpecificBagOStuff.

Definition at line 480 of file SqlBagOStuff.php.

References modifyMulti().

◆ doCas()

SqlBagOStuff::doCas (   $casToken,
  $key,
  $value,
  $exptime = 0,
  $flags = 0 
)
protected

Check and set an item.

Parameters
mixed$casToken
string$key
mixed$value
int$exptimeEither an interval in seconds or a unix timestamp for expiry
int$flagsBitfield of BagOStuff::WRITE_* constants
Returns
bool Success

Reimplemented from MediumSpecificBagOStuff.

Definition at line 484 of file SqlBagOStuff.php.

References $success, $tableName, BagOStuff\fieldHasFlags(), getConnection(), MediumSpecificBagOStuff\getExpirationAsTimestamp(), getKeyLocation(), getMaxDateTime(), handleWriteError(), silenceTransactionProfiler(), and waitForReplication().

◆ doChangeTTL()

SqlBagOStuff::doChangeTTL (   $key,
  $exptime,
  $flags 
)
protected
Parameters
string$key
int$exptime
int$flags
Returns
bool

Reimplemented from MediumSpecificBagOStuff.

Definition at line 585 of file SqlBagOStuff.php.

References modifyMulti().

◆ doDelete()

SqlBagOStuff::doDelete (   $key,
  $flags = 0 
)
protected

Delete an item.

Parameters
string$key
int$flagsBitfield of BagOStuff::WRITE_* constants
Returns
bool True if the item was deleted or not found, false on failure

Reimplemented from MediumSpecificBagOStuff.

Definition at line 534 of file SqlBagOStuff.php.

References modifyMulti().

◆ doDeleteMulti()

SqlBagOStuff::doDeleteMulti ( array  $keys,
  $flags = 0 
)
protected
Parameters
string[]$keysList of keys
int$flagsBitfield of BagOStuff::WRITE_* constants
Returns
bool Success

Reimplemented from MediumSpecificBagOStuff.

Definition at line 525 of file SqlBagOStuff.php.

References $keys, and modifyMulti().

◆ doGet()

SqlBagOStuff::doGet (   $key,
  $flags = 0,
$casToken = null 
)
protected
Parameters
string$key
int$flagsBitfield of BagOStuff::READ_* constants [optional]
mixed | null&$casTokenToken to use for check-and-set comparisons
Returns
mixed Returns false on failure or if the item does not exist

Reimplemented from MediumSpecificBagOStuff.

Definition at line 261 of file SqlBagOStuff.php.

References $blob, fetchBlobMulti(), and unserialize().

◆ doGetMulti()

SqlBagOStuff::doGetMulti ( array  $keys,
  $flags = 0 
)
protected

Get an associative array containing the item for each of the keys that have items.

Parameters
string[]$keysList of keys
int$flagsBitfield; supports READ_LATEST [optional]
Returns
array Map of (key => value) for existing keys

Reimplemented from MediumSpecificBagOStuff.

Definition at line 277 of file SqlBagOStuff.php.

References $blob, fetchBlobMulti(), and unserialize().

◆ doSet()

SqlBagOStuff::doSet (   $key,
  $value,
  $exptime = 0,
  $flags = 0 
)
protected

Set an item.

Parameters
string$key
mixed$value
int$exptimeEither an interval in seconds or a unix timestamp for expiry
int$flagsBitfield of BagOStuff::WRITE_* constants
Returns
bool Success

Reimplemented from MediumSpecificBagOStuff.

Definition at line 476 of file SqlBagOStuff.php.

References modifyMulti().

◆ doSetMulti()

SqlBagOStuff::doSetMulti ( array  $data,
  $exptime = 0,
  $flags = 0 
)
protected
Parameters
mixed[]$dataMap of (key => value)
int$exptimeEither an interval in seconds or a unix timestamp for expiry
int$flagsBitfield of BagOStuff::WRITE_* constants
Returns
bool Success

Reimplemented from MediumSpecificBagOStuff.

Definition at line 349 of file SqlBagOStuff.php.

References modifyMulti().

◆ expireAll()

SqlBagOStuff::expireAll ( )

Definition at line 643 of file SqlBagOStuff.php.

References deleteObjectsExpiringBefore(), and BagOStuff\getCurrentTime().

◆ fetchBlobMulti()

SqlBagOStuff::fetchBlobMulti ( array  $keys)
private

◆ getConnection()

SqlBagOStuff::getConnection (   $shardIndex)
private

Get a connection to the specified database.

Parameters
int | string$shardIndexServer index or self::SHARD_LOCAL/self::SHARD_GLOBAL
Returns
IMaintainableDatabase
Exceptions
DBConnectionError
UnexpectedValueException

Definition at line 186 of file SqlBagOStuff.php.

References getConnectionFromServerInfo(), getConnectionViaLoadBalancer(), and BagOStuff\getCurrentTime().

Referenced by createTables(), deleteAll(), deleteObjectsExpiringBefore(), doCas(), fetchBlobMulti(), incr(), lock(), modifyMulti(), and unlock().

◆ getConnectionFromServerInfo()

SqlBagOStuff::getConnectionFromServerInfo (   $shardIndex,
array  $server 
)
private
Parameters
int$shardIndex
array$serverServer config map
Returns
IMaintainableDatabase
Exceptions
DBError

Definition at line 957 of file SqlBagOStuff.php.

References Wikimedia\Rdbms\IDatabase\getType(), initSqliteDatabase(), and Wikimedia\Rdbms\IDatabase\tableExists().

Referenced by getConnection().

◆ getConnectionViaLoadBalancer()

SqlBagOStuff::getConnectionViaLoadBalancer (   $shardIndex)
private
Parameters
string$shardIndexself::SHARD_LOCAL/self::SHARD_GLOBAL
Returns
IMaintainableDatabase
Exceptions
DBError

Definition at line 933 of file SqlBagOStuff.php.

References $globalKeyLb, DB_MASTER, DB_REPLICA, and Wikimedia\Rdbms\ILoadBalancer\getMaintenanceConnectionRef().

Referenced by getConnection().

◆ getKeyLocation()

SqlBagOStuff::getKeyLocation (   $key)
private

Get the server index and table name for a given key.

Parameters
string$key
Returns
array (server index or self::SHARD_LOCAL/self::SHARD_GLOBAL, table name)

Definition at line 218 of file SqlBagOStuff.php.

References $globalKeyLb, $numTableShards, $serverTags, and getTableNameByShard().

Referenced by doCas(), fetchBlobMulti(), incr(), lock(), modifyMulti(), and unlock().

◆ getMaxDateTime()

SqlBagOStuff::getMaxDateTime (   $db)
private
Parameters
IDatabase$db
Returns
string

Definition at line 605 of file SqlBagOStuff.php.

References BagOStuff\getCurrentTime().

Referenced by doCas(), isExpired(), and modifyMulti().

◆ getServerShardIndexes()

SqlBagOStuff::getServerShardIndexes ( )
private
Returns
string[]|int[] List of server indexes or self::SHARD_LOCAL/self::SHARD_GLOBAL

Definition at line 1095 of file SqlBagOStuff.php.

Referenced by createTables(), deleteAll(), and deleteObjectsExpiringBefore().

◆ getTableNameByShard()

SqlBagOStuff::getTableNameByShard (   $index)
private

Get the table name for a given shard index.

Parameters
int | null$index
Returns
string

Definition at line 251 of file SqlBagOStuff.php.

References $tableName.

Referenced by createTables(), deleteAll(), deleteServerObjectsExpiringBefore(), and getKeyLocation().

◆ handleReadError()

SqlBagOStuff::handleReadError ( DBError  $exception,
  $shardIndex 
)
private

Handle a DBError which occurred during a read operation.

Parameters
DBError$exception
int$shardIndex

Definition at line 984 of file SqlBagOStuff.php.

References markServerDown(), and setAndLogDBError().

Referenced by fetchBlobMulti().

◆ handleWriteError()

SqlBagOStuff::handleWriteError ( DBError  $exception,
  $db,
  $shardIndex 
)
private

Handle a DBQueryError which occurred during a write operation.

Parameters
DBError$exception
IDatabase | null$dbDB handle or null if connection failed
int$shardIndex
Exceptions
Exception

Definition at line 1000 of file SqlBagOStuff.php.

References markServerDown(), and setAndLogDBError().

Referenced by deleteAll(), deleteObjectsExpiringBefore(), doCas(), fetchBlobMulti(), incr(), lock(), modifyMulti(), and unlock().

◆ incr()

SqlBagOStuff::incr (   $key,
  $value = 1,
  $flags = 0 
)

Increase stored value of $key by $value while preserving its TTL.

Parameters
string$keyKey to increase
int$valueValue to add to $key (default: 1) [optional]
int$flagsBit field of class WRITE_* constants [optional]
Returns
int|bool New value or false on failure

Reimplemented from BagOStuff.

Definition at line 538 of file SqlBagOStuff.php.

References $tableName, getConnection(), getKeyLocation(), handleWriteError(), MediumSpecificBagOStuff\isInteger(), and silenceTransactionProfiler().

Referenced by decr().

◆ initSqliteDatabase()

◆ isExpired()

SqlBagOStuff::isExpired ( IDatabase  $db,
  $exptime 
)
private
Parameters
IDatabase$db
string$exptime
Returns
bool

Definition at line 594 of file SqlBagOStuff.php.

References BagOStuff\getCurrentTime(), and getMaxDateTime().

Referenced by fetchBlobMulti().

◆ lock()

SqlBagOStuff::lock (   $key,
  $timeout = 6,
  $expiry = 6,
  $rclass = '' 
)

Acquire an advisory lock on a key string.

Note that if reentry is enabled, duplicate calls ignore $expiry

Parameters
string$key
int$timeoutLock wait timeout; 0 for non-blocking [optional]
int$expiryLock expiry [optional]; 1 day maximum
string$rclassAllow reentry if set and the current lock used this value
Returns
bool Success

Reimplemented from MediumSpecificBagOStuff.

Definition at line 784 of file SqlBagOStuff.php.

References getConnection(), getKeyLocation(), and handleWriteError().

◆ makeKeyInternal()

SqlBagOStuff::makeKeyInternal (   $keyspace,
  $args 
)

Construct a cache key.

Since
1.35
Parameters
string$keyspace
array$args
Returns
string

Reimplemented from MediumSpecificBagOStuff.

Definition at line 858 of file SqlBagOStuff.php.

References $args, and MediumSpecificBagOStuff\$keyspace.

◆ markServerDown()

SqlBagOStuff::markServerDown ( DBError  $exception,
  $shardIndex 
)
private

Mark a server down due to a DBConnectionError exception.

Parameters
DBError$exception
int$shardIndex

Definition at line 1028 of file SqlBagOStuff.php.

References BagOStuff\getCurrentTime().

Referenced by handleReadError(), and handleWriteError().

◆ modifyMulti()

SqlBagOStuff::modifyMulti ( array  $data,
  $exptime,
  $flags,
  $op 
)
private
Parameters
mixed[] | null[]$dataMap of (key => new value or null)
int$exptimeUNIX timestamp, TTL in seconds, or 0 (no expiration)
int$flagsBitfield of BagOStuff::WRITE_* constants
string$opCache operation
Returns
bool

Definition at line 360 of file SqlBagOStuff.php.

References $tableName, BagOStuff\fieldHasFlags(), getConnection(), MediumSpecificBagOStuff\getExpirationAsTimestamp(), getKeyLocation(), getMaxDateTime(), handleWriteError(), occasionallyGarbageCollect(), silenceTransactionProfiler(), updateTable(), and waitForReplication().

Referenced by changeTTLMulti(), doAdd(), doChangeTTL(), doDelete(), doDeleteMulti(), doSet(), and doSetMulti().

◆ occasionallyGarbageCollect()

SqlBagOStuff::occasionallyGarbageCollect ( IDatabase  $db)
private
Parameters
IDatabase$db
Exceptions
DBError

Definition at line 617 of file SqlBagOStuff.php.

References BagOStuff\$asyncHandler, deleteServerObjectsExpiringBefore(), and BagOStuff\getCurrentTime().

Referenced by modifyMulti().

◆ serialize()

SqlBagOStuff::serialize (   $data)
protected

Serialize an object and, if possible, compress the representation.

On typical message and page data, this can provide a 3X decrease in storage requirements.

Parameters
mixed$data
Returns
string|int

Reimplemented from MediumSpecificBagOStuff.

Definition at line 892 of file SqlBagOStuff.php.

References serialize().

◆ setAndLogDBError()

SqlBagOStuff::setAndLogDBError ( DBError  $exception)
private
Parameters
DBError$exception

Definition at line 1011 of file SqlBagOStuff.php.

References MediumSpecificBagOStuff\setLastError().

Referenced by handleReadError(), handleWriteError(), and waitForReplication().

◆ silenceTransactionProfiler()

SqlBagOStuff::silenceTransactionProfiler ( )
private

Silence the transaction profiler until the return value falls out of scope.

Returns
ScopedCallback|null

Definition at line 1157 of file SqlBagOStuff.php.

Referenced by deleteAll(), deleteObjectsExpiringBefore(), doCas(), incr(), and modifyMulti().

◆ unlock()

SqlBagOStuff::unlock (   $key)

Release an advisory lock on a key string.

Parameters
string$key
Returns
bool Success

Reimplemented from MediumSpecificBagOStuff.

Definition at line 819 of file SqlBagOStuff.php.

References getConnection(), getKeyLocation(), and handleWriteError().

◆ unserialize()

SqlBagOStuff::unserialize (   $serial)
protected

Unserialize and, if necessary, decompress an object.

Parameters
string$serial
Returns
mixed

Reimplemented from MediumSpecificBagOStuff.

Definition at line 910 of file SqlBagOStuff.php.

References MediumSpecificBagOStuff\isInteger(), and unserialize().

Referenced by doGet(), doGetMulti(), and unserialize().

◆ updateTable()

SqlBagOStuff::updateTable (   $op,
  $db,
  $table,
  $tableKeys,
  $data,
  $dbExpiry 
)
private
Parameters
string$op
IDatabase$db
string$table
string[]$tableKeysKeys in $data to update
mixed[] | null[]$dataMap of (key => new value or null)
string$dbExpiryDB-encoded expiry
Returns
bool
Exceptions
DBError
InvalidArgumentException

Definition at line 422 of file SqlBagOStuff.php.

References $success, and serialize().

Referenced by modifyMulti().

◆ waitForReplication()

SqlBagOStuff::waitForReplication (   $shardIndex)
private

Wait for replica DBs to catch up to the master DB.

Parameters
int | string$shardIndexServer index or self::SHARD_LOCAL/self::SHARD_GLOBAL
Returns
bool Success

Definition at line 1119 of file SqlBagOStuff.php.

References MediumSpecificBagOStuff\$busyCallbacks, $globalKeyLb, MediumSpecificBagOStuff\$syncTimeout, Wikimedia\Rdbms\ILoadBalancer\getMasterPos(), and setAndLogDBError().

Referenced by doCas(), and modifyMulti().

Member Data Documentation

◆ $connFailureErrors

Exception [] SqlBagOStuff::$connFailureErrors = []
protected

Map of (shard index => Exception)

Definition at line 72 of file SqlBagOStuff.php.

◆ $connFailureTimes

float [] SqlBagOStuff::$connFailureTimes = []
protected

Map of (shard index => UNIX timestamps)

Definition at line 70 of file SqlBagOStuff.php.

◆ $conns

IMaintainableDatabase [] SqlBagOStuff::$conns
protected

Map of (shard index => DB handle)

Definition at line 68 of file SqlBagOStuff.php.

◆ $GC_DELAY_SEC

int SqlBagOStuff::$GC_DELAY_SEC = 1
staticprivate

Definition at line 75 of file SqlBagOStuff.php.

◆ $globalKeyLb

ILoadBalancer null SqlBagOStuff::$globalKeyLb
protected

◆ $lastGarbageCollect

int SqlBagOStuff::$lastGarbageCollect = 0
protected

UNIX timestamp.

Definition at line 55 of file SqlBagOStuff.php.

◆ $localKeyLb

ILoadBalancer null SqlBagOStuff::$localKeyLb
protected

Definition at line 44 of file SqlBagOStuff.php.

◆ $numServerShards

int SqlBagOStuff::$numServerShards
protected

Number of database servers shards (e.g.

horizontal/vertical partitions)

Definition at line 53 of file SqlBagOStuff.php.

Referenced by deleteServerObjectsExpiringBefore().

◆ $numTableShards

int SqlBagOStuff::$numTableShards = 1
protected

Definition at line 61 of file SqlBagOStuff.php.

Referenced by createTables(), deleteAll(), and getKeyLocation().

◆ $OP_ADD

string SqlBagOStuff::$OP_ADD = 'add'
staticprivate

Definition at line 80 of file SqlBagOStuff.php.

◆ $OP_DELETE

string SqlBagOStuff::$OP_DELETE = 'delete'
staticprivate

Definition at line 84 of file SqlBagOStuff.php.

◆ $OP_SET

string SqlBagOStuff::$OP_SET = 'set'
staticprivate

Definition at line 78 of file SqlBagOStuff.php.

◆ $OP_TOUCH

string SqlBagOStuff::$OP_TOUCH = 'touch'
staticprivate

Definition at line 82 of file SqlBagOStuff.php.

◆ $purgeLimit

int SqlBagOStuff::$purgeLimit = 100
protected

Definition at line 59 of file SqlBagOStuff.php.

◆ $purgePeriod

int SqlBagOStuff::$purgePeriod = 10
protected

Definition at line 57 of file SqlBagOStuff.php.

◆ $replicaOnly

bool SqlBagOStuff::$replicaOnly
protected

Definition at line 65 of file SqlBagOStuff.php.

◆ $serverInfos

array [] SqlBagOStuff::$serverInfos = []
protected

(server index => server config)

Definition at line 49 of file SqlBagOStuff.php.

◆ $serverTags

string [] SqlBagOStuff::$serverTags = []
protected

(server index => tag/host name)

Definition at line 51 of file SqlBagOStuff.php.

Referenced by getKeyLocation().

◆ $tableName

string SqlBagOStuff::$tableName = 'objectcache'
protected

Definition at line 63 of file SqlBagOStuff.php.

Referenced by doCas(), fetchBlobMulti(), getTableNameByShard(), incr(), and modifyMulti().


The documentation for this class was generated from the following file: