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

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