PHP Class Overtrue\LaravelWechat\CacheBridge

Inheritance: implements Doctrine\Common\Cache\Cache
Show file Open project: overtrue/laravel-wechat

Public Methods

Method 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 method

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

delete() public method

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

fetch() public method

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

getStats() public method

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

save() public method

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