class Redis

def method_missing(command, *args)

def method_missing(command, *args)
  synchronize do
    @client.call(command, *args)
  end
end