protected function PredisCache::doFetch in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/cache/lib/Doctrine/Common/Cache/PredisCache.php \Doctrine\Common\Cache\PredisCache::doFetch()
Fetches an entry from the cache.
Parameters
string $id The id of the cache entry to fetch.:
Return value
mixed|boolean The cached data or FALSE, if no cache entry exists for the given id.
Overrides CacheProvider::doFetch
File
- vendor/
doctrine/ cache/ lib/ Doctrine/ Common/ Cache/ PredisCache.php, line 32
Class
- PredisCache
- Predis cache provider.
Namespace
Doctrine\Common\CacheCode
protected function doFetch($id) {
$result = $this->client
->get($id);
if (null === $result) {
return false;
}
return unserialize($result);
}