$innerEngine
$innerEngine : \Cake\Cache\CacheEngine
The wrapped cache engine object.
Wrapper for Cake engines that allow them to support the PSR16 Simple Cache Interface
$innerEngine : \Cake\Cache\CacheEngine
The wrapped cache engine object.
__construct(\Cake\Cache\CacheEngine $innerEngine)
Constructor
\Cake\Cache\CacheEngine | $innerEngine | The decorated engine. |
get(string $key, mixed $default = null) : mixed
Fetches the value for a given key from the cache.
string | $key | The unique key of this item in the cache. |
mixed | $default | Default value to return if the key does not exist. |
If the $key string is not a legal value.
The value of the item from the cache, or $default in case of cache miss.
set(string $key, mixed $value, null|integer|\DateInterval $ttl = null) : boolean
Persists data in the cache, uniquely referenced by the given key with an optional expiration TTL time.
string | $key | The key of the item to store. |
mixed | $value | The value of the item to store, must be serializable. |
null|integer|\DateInterval | $ttl | Optional. The TTL value of this item. If no value is sent and the driver supports TTL then the library may set a default value for it or let the driver take care of that. |
MUST be thrown if the $key string is not a legal value.
True on success and false on failure.
delete(string $key) : boolean
Delete an item from the cache by its unique key.
string | $key | The unique cache key of the item to delete. |
If the $key string is not a legal value.
True if the item was successfully removed. False if there was an error.
getMultiple(\Cake\Cache\iterable $keys, mixed $default = null) : \Cake\Cache\iterable
Obtains multiple cache items by their unique keys.
\Cake\Cache\iterable | $keys | A list of keys that can obtained in a single operation. |
mixed | $default | Default value to return for keys that do not exist. |
If $keys is neither an array nor a Traversable, or if any of the $keys are not a legal value.
A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value.
setMultiple(\Cake\Cache\iterable $values, null|integer|\DateInterval $ttl = null) : boolean
Persists a set of key => value pairs in the cache, with an optional TTL.
\Cake\Cache\iterable | $values | A list of key => value pairs for a multiple-set operation. |
null|integer|\DateInterval | $ttl | Optional. The TTL value of this item. If no value is sent and the driver supports TTL then the library may set a default value for it or let the driver take care of that. |
If $values is neither an array nor a Traversable, or if any of the $values are not a legal value.
True on success and false on failure.
deleteMultiple(\Cake\Cache\iterable $keys) : boolean
Deletes multiple cache items in a single operation.
\Cake\Cache\iterable | $keys | A list of string-based keys to be deleted. |
If $keys is neither an array nor a Traversable, or if any of the $keys are not a legal value.
True if the items were successfully removed. False if there was an error.
has(string $key) : boolean
Determines whether an item is present in the cache.
NOTE: It is recommended that has() is only to be used for cache warming type purposes and not to be used within your live applications operations for get/set, as this method is subject to a race condition where your has() will return true and immediately after, another script can remove it making the state of your app out of date.
string | $key | The cache item key. |
If the $key string is not a legal value.
add(string $key, mixed $value) : boolean
Write data for key into a cache engine if it doesn't exist already.
string | $key | Identifier for the data. |
mixed | $value | Data to be cached - anything except a resource. |
True if the data was successfully cached, false on failure. Or if the key existed already.
clearGroup(string $group) : boolean
Clear all values belonging to the named group.
Each implementation needs to decide whether actually delete the keys or just augment a group generation value to achieve the same result.
string | $group | name of the group to be cleared |
Loading…