PhpArrayCache
class PhpArrayCache implements CacheInterface
Caches items at warm up time using a PHP array that is stored in shared memory by OPCache since PHP 7.0.
Warmed up items are read-only and run-time discovered items are cached using a fallback adapter.
Traits
PhpArrayTrait |
Methods
warmUp(array $values) Store an array of cached values. | from PhpArrayTrait | |
clear() {@inheritdoc} | from PhpArrayTrait | |
__construct(string $file, CacheInterface $fallbackPool) | ||
static CacheInterface | create($file, CacheInterface $fallbackPool) This adapter should only be used on PHP 7.0+ to take advantage of how PHP stores arrays in its latest versions. This factory method decorates the given fallback pool with this adapter only if the current PHP version is supported. | |
get($key, $default = null) {@inheritdoc} | ||
getMultiple($keys, $default = null) {@inheritdoc} | ||
has($key) {@inheritdoc} | ||
delete($key) {@inheritdoc} | ||
deleteMultiple($keys) {@inheritdoc} | ||
set($key, $value, $ttl = null) {@inheritdoc} | ||
setMultiple($values, $ttl = null) {@inheritdoc} |
Details
warmUp(array $values)
Store an array of cached values.
Parameters
array | $values | The cached values |
clear()
{@inheritdoc}
__construct(string $file, CacheInterface $fallbackPool)
Parameters
string | $file | The PHP file were values are cached |
CacheInterface | $fallbackPool | A pool to fallback on when an item is not hit |
static CacheInterface create($file, CacheInterface $fallbackPool)
This adapter should only be used on PHP 7.0+ to take advantage of how PHP stores arrays in its latest versions. This factory method decorates the given fallback pool with this adapter only if the current PHP version is supported.
Parameters
$file | ||
CacheInterface | $fallbackPool |
Return Value
CacheInterface |
get($key, $default = null)
{@inheritdoc}
Parameters
$key | ||
$default |
getMultiple($keys, $default = null)
{@inheritdoc}
Parameters
$keys | ||
$default |
has($key)
{@inheritdoc}
Parameters
$key |
delete($key)
{@inheritdoc}
Parameters
$key |
deleteMultiple($keys)
{@inheritdoc}
Parameters
$keys |
set($key, $value, $ttl = null)
{@inheritdoc}
Parameters
$key | ||
$value | ||
$ttl |
setMultiple($values, $ttl = null)
{@inheritdoc}
Parameters
$values | ||
$ttl |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/3.3/Symfony/Component/Cache/Simple/PhpArrayCache.html