Method |
Description |
|
collectGarbage ( ) : void |
Does garbage collection |
|
flush ( ) : void |
Removes all cache entries of this cache. |
|
get ( string $entryIdentifier ) : mixed |
Loads data from the cache. |
|
getPrefixedIdentifier ( string $entryIdentifier ) : string |
Returns the internally used, prefixed entry identifier for the given public
entry identifier. |
|
has ( string $entryIdentifier ) : boolean |
Checks if a cache entry with the specified identifier exists. |
|
remove ( string $entryIdentifier ) : boolean |
Removes all cache entries matching the specified identifier. |
|
set ( string $entryIdentifier, string $data, array $tags = [], integer $lifetime = null ) : void |
Saves data in the cache. |
|
setCache ( Neos\Cache\Frontend\FrontendInterface $cache ) : void |
Sets a reference to the cache frontend which uses this backend |
|