Go to the documentation of this file.
47 'compress_threshold' => 1500,
48 'connect_timeout' => 0.5,
68 protected function cas( $casToken, $key,
$value, $exptime = 0 ) {
73 public function delete( $key ) {
82 public function merge( $key, callable $callback, $exptime = 0, $attempts = 10,
$flags = 0 ) {
83 return $this->
mergeViaCas( $key, $callback, $exptime, $attempts );
116 function ( $arg )
use ( &$charsLeft ) {
117 $arg = strtr( $arg,
' ',
'_' );
120 $arg = preg_replace_callback(
121 '/[^\x21-\x22\x24\x26-\x39\x3b-\x7e]+/',
123 return rawurlencode( $m[0] );
129 if ( $charsLeft > 33 && strlen( $arg ) > $charsLeft ) {
130 $arg =
'#' . md5( $arg );
133 $charsLeft -= strlen( $arg );
139 if ( $charsLeft < 0 ) {
155 if ( preg_match(
'/[^\x21-\x7e]+/', $key ) ) {
156 throw new Exception(
"Key contains invalid characters: $key" );
171 if ( $expiry > 2592000 && $expiry < 1000000000 ) {
182 $this->logger->debug( $text );
186 if ( array_key_exists(
'val', $event ) ) {
fixExpiry( $expiry)
TTLs higher than 30 days will be detected as absolute TTLs (UNIX timestamps), and will result in the ...
processing should stop and the error should be shown to the user * false
The phpstorm stubs package includes the Memcached class with two parameters and docs saying that they...
Base class for memcached clients.
changeTTL( $key, $exptime=0)
Reset the TTL on a key if it exists.
applyDefaultParams( $params)
Fill in some defaults for missing keys in $params.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
interface is intended to be more or less compatible with the PHP memcached client.
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
debugLog( $text)
Send a debug message to the log.
memcached client class implemented using (p)fsockopen()
cas( $casToken, $key, $value, $exptime=0)
Check and set an item.
modifySimpleRelayEvent(array $event)
Modify a cache update operation array for EventRelayer::notify()
merge( $key, callable $callback, $exptime=0, $attempts=10, $flags=0)
Merge changes into the existing cache value (possibly creating a new one)
makeKeyInternal( $keyspace, $args)
Construct a cache key.
mergeViaCas( $key, $callback, $exptime=0, $attempts=10)
getClient()
Get the underlying client object.
getWithToken( $key, &$casToken, $flags=0)
add( $key, $value, $exptime=0)
validateKeyEncoding( $key)
Ensure that a key is safe to use (contains no control characters and no characters above the ASCII ra...
__construct(array $params)
$params include:
MemcachedClient Memcached $client
it s the revision text itself In either if gzip is the revision text is gzipped $flags
the array() calling protocol came about after MediaWiki 1.4rc1.