class Redis

def info

Get information and statistics about the server.
def info
  synchronize do
    reply = @client.call(:info)
    if reply.kind_of?(String)
      Hash[*reply.split(/:|\r\n/).grep(/^[^#]/)]
    else
      reply
    end
  end
end