# File lib/couchrest/database.rb, line 49
    def search(name, params={})
      # -> http://localhost:5984/yourdb/_fti/YourDesign/by_name?include_docs=true&q=plop*'
      url = CouchRest.paramify_url "#{root}/_fti/#{name}", params
      CouchRest.get url
    end