delete() public method

public delete ( CacheKey $k )
$k Cachearium\CacheKey
 /**
  * (non-PHPdoc)
  * @see \Cachearium\Backend\CacheRAM::delete()
  */
 public function delete(CacheKey $k)
 {
     // @codeCoverageIgnoreStart
     if (!$this->enabled) {
         throw new NotCachedException();
     }
     // @codeCoverageIgnoreEnd
     $group = $this->hashKey($k);
     $this->log(CacheLogEnum::DELETED, $k);
     parent::delete($k);
     return $this->memcached->delete($group);
 }