remove() public method

Removes the given cache entry from the cache.
public remove ( string $entryIdentifier ) : boolean
$entryIdentifier string An identifier specifying the cache entry
return boolean TRUE if such an entry exists, FALSE if not
 /**
  * Deletes a cache entry.
  *
  * @param string $id 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));
 }