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
sunspot-2.7.1 lib/sunspot/search/more_like_this_search.rb
sunspot-2.7.0 lib/sunspot/search/more_like_this_search.rb
sunspot-2.6.0 lib/sunspot/search/more_like_this_search.rb
sunspot-2.5.0 lib/sunspot/search/more_like_this_search.rb
sunspot-2.4.0 lib/sunspot/search/more_like_this_search.rb
sunspot-2.3.0 lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.8 lib/sunspot/search/more_like_this_search.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/sunspot-2.2.7/lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.7 lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.6 lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.5 lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.4 lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.3 lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.2 lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.1 lib/sunspot/search/more_like_this_search.rb
sunspot-2.2.0 lib/sunspot/search/more_like_this_search.rb
sunspot-2.1.1 lib/sunspot/search/more_like_this_search.rb
sunspot-2.1.0 lib/sunspot/search/more_like_this_search.rb
sunspot-2.0.0 lib/sunspot/search/more_like_this_search.rb
sunspot-2.0.0.pre.130115 lib/sunspot/search/more_like_this_search.rb