module Redis::Commands::Connection

def auth(*args)

Other tags:
    See: https://redis.io/commands/auth - AUTH command

Returns:
  • (String) - `OK`

Parameters:
  • args (Array) -- includes both username and password
def auth(*args)
  send_command([:auth, *args])
end