class Redis

def ping

Ping the server.
def ping
  synchronize do
    @client.call(:ping)
  end
end