PHP Класс Neos\Cache\Frontend\StringFrontend

Наследование: extends AbstractFrontend
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
get ( string $entryIdentifier ) : string Finds and returns a variable value from the cache.
getByTag ( string $tag ) : array Finds and returns all cache entries which are tagged by the specified tag.
set ( string $entryIdentifier, string $string, array $tags = [], integer $lifetime = null ) : void Saves the value of a PHP variable in the cache.

Описание методов

get() публичный Метод

Finds and returns a variable value from the cache.
public get ( string $entryIdentifier ) : string
$entryIdentifier string Identifier of the cache entry to fetch
Результат string The value

getByTag() публичный Метод

Finds and returns all cache entries which are tagged by the specified tag.
public getByTag ( string $tag ) : array
$tag string The tag to search for
Результат array An array with the identifier (key) and content (value) of all matching entries. An empty array if no entries matched

set() публичный Метод

Saves the value of a PHP variable in the cache.
public set ( string $entryIdentifier, string $string, array $tags = [], integer $lifetime = null ) : void
$entryIdentifier string An identifier used for this cache entry
$string string The variable to cache
$tags array Tags to associate with this cache entry
$lifetime integer Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime.
Результат void