Neos\Flow\Persistence\Doctrine\CacheAdapter::delete PHP Méthode

delete() public méthode

Deletes a cache entry.
public delete ( string $id ) : boolean
$id string The cache id.
Résultat boolean TRUE if the cache entry was successfully deleted, FALSE otherwise.
    public function delete($id)
    {
        return $this->cache->remove($this->convertCacheIdentifier($id));
    }