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

remove() public method

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