Neos\Flow\Persistence\Doctrine\CacheAdapter::fetch PHP Method

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.
    public function fetch($id)
    {
        return $this->cache->get($this->convertCacheIdentifier($id));
    }