class Redis

def auth(password)

Returns:
  • (String) - `OK`

Parameters:
  • password (String) -- must match the password specified in the
def auth(password)
  synchronize do |client|
    client.call([:auth, password])
  end
end