class Redis

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)
  synchronize do |client|
    client.call([:auth, *args])
  end
end