Sha256: e9c7464c3ca1fc8797d137e56a98dfff413423610a13ea82fc22e368947371fd

Contents?: true

Size: 780 Bytes

Versions: 63

Compression:

Stored size: 780 Bytes

Contents

module Sunspot
  # 
  # This class encapsulates the results of a Solr MoreLikeThis search. It provides access
  # to search results, total result count, and pagination information.
  # Instances of MoreLikeThis are returned by the Sunspot.more_like_this and
  # Sunspot.new_more_like_this methods.
  #
  module Search
    class MoreLikeThisSearch < AbstractSearch
      def execute
        if @query.more_like_this.fields.empty?
          @setup.all_more_like_this_fields.each do |field|
            @query.more_like_this.add_field(field)
          end
        end
        super
      end

      def request_handler
        super || :mlt
      end

      private

      # override
      def dsl
        DSL::MoreLikeThisQuery.new(self, @query, @setup)
      end
    end
  end
end

Version data entries

63 entries across 63 versions & 12 rubygems

Version Path
cb_sunspot-2.0.0.pre.3 lib/sunspot/search/more_like_this_search.rb
cb_sunspot-2.0.0.pre3 lib/sunspot/search/more_like_this_search.rb
sunspot-1.3.0 lib/sunspot/search/more_like_this_search.rb
pduey-sunspot-1.2.1.1 lib/sunspot/search/more_like_this_search.rb
sunspot-1.3.0.rc6 lib/sunspot/search/more_like_this_search.rb
erichummel-sunspot-1.2.1g lib/sunspot/search/more_like_this_search.rb
erichummel-sunspot-1.2.1f lib/sunspot/search/more_like_this_search.rb
erichummel-sunspot-1.2.1b lib/sunspot/search/more_like_this_search.rb
erichummel-sunspot-1.2.1a lib/sunspot/search/more_like_this_search.rb
erichummel-sunspot-1.2.1 lib/sunspot/search/more_like_this_search.rb
lisausa-sunspot-1.2.1.1 lib/sunspot/search/more_like_this_search.rb
lisausa-sunspot-1.2.1 lib/sunspot/search/more_like_this_search.rb
sunspot_rbg-1.3.1 lib/sunspot/search/more_like_this_search.rb
sunspot_rbg-1.3.0 lib/sunspot/search/more_like_this_search.rb
ruben-sunspot-1.1.4 lib/sunspot/search/more_like_this_search.rb
ruben-sunspot-1.1.3 lib/sunspot/search/more_like_this_search.rb
ruben-sunspot-1.1.2 lib/sunspot/search/more_like_this_search.rb
sunspot-1.2.1 lib/sunspot/search/more_like_this_search.rb
sunspot-1.2.0 lib/sunspot/search/more_like_this_search.rb
ruben-sunspot-1.1.1 lib/sunspot/search/more_like_this_search.rb