Test if an entry exists in the cache.
string $id cache id The cache id of the entry to check for.:
boolean TRUE if a cache entry exists for the given cache id, FALSE otherwise.
Overrides CacheProvider::doContains
protected function doContains($id) {
return false !== zend_shm_cache_fetch($id);
}