Nette\Caching\Storages\MemcachedStorage::remove PHP Method

remove() public method

Removes item from the cache.
public remove ( $key ) : void
return void
    public function remove($key)
    {
        $this->memcache->delete(urlencode($this->prefix . $key), 0);
    }