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

remove() public method

Removes item from the cache.
public remove ( $key ) : void
return void
    public function remove($key)
    {
        $this->pdo->prepare('DELETE FROM cache WHERE key=?')->execute([$key]);
    }