PHP Класс Overtrue\LaravelWechat\CacheBridge

Наследование: implements Doctrine\Common\Cache\Cache
Показать файл Открыть проект

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

Метод Описание
contains ( string $id ) : boolean Tests if an entry exists in the cache.
delete ( string $id ) : boolean Deletes a cache entry.
fetch ( string $id ) : mixed Fetches an entry from the cache.
getStats ( ) : array | null Retrieves cached information from the data store.
save ( string $id, mixed $data, integer $lifeTime ) : boolean Puts data into the cache.

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

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

Tests if an entry exists in the cache.
public contains ( string $id ) : boolean
$id string The cache id of the entry to check for.
Результат boolean TRUE if a cache entry exists for the given cache id, FALSE otherwise.

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

Deletes a cache entry.
public delete ( string $id ) : boolean
$id string The cache id.
Результат boolean TRUE if the cache entry was successfully deleted, FALSE otherwise. Deleting a non-existing entry is considered successful.

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

Fetches an entry from the cache.
public fetch ( string $id ) : mixed
$id string The id of the cache entry to fetch.
Результат mixed The cached data or FALSE, if no cache entry exists for the given id.

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

Retrieves cached information from the data store.
public getStats ( ) : array | null
Результат array | null An associative array with server's statistics if available, NULL otherwise.

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

If a cache entry with the given id already exists, its data will be replaced.
public save ( string $id, mixed $data, integer $lifeTime ) : boolean
$id string The cache id.
$data mixed The cache entry/data.
$lifeTime integer The lifetime in number of seconds for this cache entry. If zero (the default), the entry never expires (although it may be deleted from the cache to make place for other entries).
Результат boolean TRUE if the entry was successfully stored in the cache, FALSE otherwise.