Sha256: 1c3c313b6f9d0017f05eb797a96c4215a5ab4f34e0a7eda6f8475d9082126d73
Contents?: true
Size: 506 Bytes
Versions: 47
Compression:
Stored size: 506 Bytes
Contents
module Sunspot module Search # # This class encapsulates the results of a Solr search. It provides access # to search results, total result count, facets, and pagination information. # Instances of Search are returned by the Sunspot.search and # Sunspot.new_search methods. # class StandardSearch < AbstractSearch def request_handler super || :select end private def dsl DSL::Search.new(self, @setup) end end end end
Version data entries
47 entries across 47 versions & 11 rubygems