Xcache storage engine for cache
Cake\Cache\Engine\XcacheEngine _auth( boolean $reverse false )
Populates and reverses $_SERVER authentication values Makes necessary changes (and reverting them back) in $_SERVER
This has to be done because xcache_clear_cache() needs to pass Basic Http Auth (see xcache.admin configuration config)
$reverse optional false clear( boolean $check )
Delete all keys from the cache
$check booleanclearGroup( string $group )
Increments the group value to simulate deletion of all keys under a group old values will remain in storage until they expire.
$group booleanCake\Cache\CacheEngine::clearGroup() decrement( string $key , integer $offset 1 )
Decrements the value of an integer cached key. If the cache key is not an integer it will be treated as 0
$key $offset optional 1 boolean|integerdelete( string $key )
Delete a key from the cache
$key booleangroups( )
Returns the group value for each of the configured groups If the group initial value was not found, then it initializes the group accordingly.
arrayCake\Cache\CacheEngine::groups() increment( string $key , integer $offset 1 )
Increments the value of an integer cached key If the cache key is not an integer it will be treated as 0
$key $offset optional 1 boolean|integerinit( array $config [] )
Initialize the Cache Engine
Called automatically by the cache frontend
$config optional [] booleanCake\Cache\CacheEngine::init() read( string $key )
Read a key from the cache
$key mixedwrite( string $key , mixed $value )
Write data for key into cache
$key $value boolean_key( string $key )
Generates a safe key, taking account of the configured key prefix
$key mixedInvalidArgumentExceptionadd( string $key , mixed $value )
Add a key to the cache if it does not already exist.
Defaults to a non-atomic implementation. Subclasses should prefer atomic implementations.
$key $value booleandeleteMany( array $keys )
Deletes keys from the cache
$keys arraygc( integer|null $expires null )
Garbage collection
Permanently remove all expired and deleted data
$expires optional null key( string $key )
Generates a safe key for use with cache engine storage engines.
$key boolean|stringreadMany( array $keys )
Read multiple keys from the cache
$keys arraywriteMany( array $data )
Write data for many keys into cache
$data array_configDelete( string $key )
Delete a single config key
$key Cake\Core\Exception\Exception_configRead( string|null $key )
Read a config variable
$key mixed_configWrite( string|array $key , mixed $value , boolean|string $merge false )
Write a config variable
$key $value $merge optional false Cake\Core\Exception\Exceptionconfig( string|array|null $key null , mixed|null $value null , boolean $merge true )
Reading the whole config:
$this->config();
Reading a specific value:
$this->config('key');
Reading a nested value:
$this->config('some.nested.key');
Setting a specific value:
$this->config('key', $value);
Setting a nested value:
$this->config('some.nested.key', $value);
Updating multiple config settings at the same time:
$this->config(['one' => 'value', 'another' => 'value']);
$key optional null $value optional null $merge optional true mixedCake\Core\Exception\ExceptionconfigShallow( string|array $key , mixed|null $value null )
Merge provided config with existing config. Unlike config() which does a recursive merge for nested keys, this method does a simple merge.
Setting a specific value:
$this->config('key', $value);
Setting a nested value:
$this->config('some.nested.key', $value);
Updating multiple config settings at the same time:
$this->config(['one' => 'value', 'another' => 'value']);
$key $value optional null mixedprotected string
Contains the compiled string with all groups prefixes to be prepended to every key in this cache engine
null protected boolean
Whether the config property has already been configured with defaults
false
© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
http://api.cakephp.org/3.1/class-Cake.Cache.Engine.XcacheEngine.html