module Sunspot::DSL::Adjustable

Public Instance Methods

adjust_solr_params( &block ) click to toggle source

<strong>Expert:</strong> Adjust or reset the parameters passed to Solr. The adjustment will take place just before sending the params to solr, after Sunspot builds the Solr params based on the methods called in the DSL.

Under normal circumstances, using this method should not be necessary; if you find that it is, please consider submitting a feature request. Using this method requires knowledge of Sunspot’s internal Solr schema and Solr query representations, which are not part of Sunspot’s public API; they could change at any time. <strong>This method is unsupported and your mileage may vary.</strong>

Examples

Sunspot.search(Post) do
  adjust_solr_params do |params|
    params[:q] += ' AND something_s:more'
  end
end

Sunspot.more_like_this(my_post) do
  adjust_solr_params do |params|
    params["mlt.match.include"] = true
  end
end
# File lib/sunspot/dsl/adjustable.rb, line 30
def adjust_solr_params( &block )
  @query.add_parameter_adjustment(block)
end
request_handler(request_handler) click to toggle source

<strong>Expert:</strong> Use a custom request handler for this search. The general use case for this would be a request handler configuration you’ve defined in solrconfig that has different search components, defaults, etc. Using this to point at an entirely different type of request handler that Sunspot doesn’t support probably won’t get you very far.

# File lib/sunspot/dsl/adjustable.rb, line 42
def request_handler(request_handler)
  @search.request_handler = request_handler
end