Neos\Cache\Frontend\FrontendInterface::has PHP Method

has() public method

Checks if a cache entry with the specified identifier exists.
public has ( string $entryIdentifier ) : boolean
$entryIdentifier string An identifier specifying the cache entry
return boolean TRUE if such an entry exists, FALSE if not
    public function has($entryIdentifier);

Usage Example

 /**
  * Tests if an entry exists in the cache.
  *
  * @param string $id The cache id of the entry to check for.
  * @return boolean TRUE if a cache entry exists for the given cache id, FALSE otherwise.
  */
 public function contains($id)
 {
     return $this->cache->has($this->convertCacheIdentifier($id));
 }