class Redis

def auth(password)

Authenticate to the server.
def auth(password)
  synchronize do
    @client.call(:auth, password)
  end
end