public async Task <string> QuitAsync()
        {
            ValidateNotDisposed();

            using var connection = new RedisConnection(_connectionSettings);
            var command = new Quit(connection.GetStream());

            return(await command.ExecuteAsync());
        }