PHP Class Overtrue\LaravelWechat\CacheBridge

Inheritance: implements Doctrine\Common\Cache\Cache
Afficher le fichier Open project: overtrue/laravel-wechat

Méthodes publiques

Méthode Description
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.

Method Details

contains() public méthode

Tests if an entry exists in the cache.
public contains ( string $id ) : boolean
$id string The cache id of the entry to check for.
Résultat boolean TRUE if a cache entry exists for the given cache id, FALSE otherwise.

delete() public méthode

Deletes a cache entry.
public delete ( string $id ) : boolean
$id string The cache id.
Résultat boolean TRUE if the cache entry was successfully deleted, FALSE otherwise. Deleting a non-existing entry is considered successful.

fetch() public méthode

Fetches an entry from the cache.
public fetch ( string $id ) : mixed
$id string The id of the cache entry to fetch.
Résultat mixed The cached data or FALSE, if no cache entry exists for the given id.

getStats() public méthode

Retrieves cached information from the data store.
public getStats ( ) : array | null
Résultat array | null An associative array with server's statistics if available, NULL otherwise.

save() public méthode

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).
Résultat boolean TRUE if the entry was successfully stored in the cache, FALSE otherwise.