Class: ThinkingSphinx::Search
- Inherits:
-
Object
- Object
- ThinkingSphinx::Search
- Defined in:
- lib/thinking_sphinx/search.rb
Overview
Once you’ve got those indexes in and built, this is the stuff that matters - how to search! This class provides a generic search interface - which you can use to search all your indexed models at once. Most times, you will just want a specific model’s results - to search and search_for_ids methods will do the job in exactly the same manner when called from a model.
Constant Summary collapse
- CoreMethods =
%w( == class class_eval extend frozen? id instance_eval instance_of? instance_values instance_variable_defined? instance_variable_get instance_variable_set instance_variables is_a? kind_of? member? method methods nil? object_id respond_to? send should type )
- SafeMethods =
%w( partition private_methods protected_methods public_methods send class )
- HashOptions =
[:conditions, :with, :without, :with_all]
- ArrayOptions =
[:classes, :without_ids]
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
-
.count(*args) ⇒ Object
Deprecated.
-
.facets(*args) ⇒ Object
Deprecated.
- .matching_fields(fields, bitmask) ⇒ Object
-
.search(*args) ⇒ Object
Deprecated.
-
.search_for_id(*args) ⇒ Object
Deprecated.
-
.search_for_ids(*args) ⇒ Object
Deprecated.
Instance Method Summary collapse
-
#current_page ⇒ Integer
The current page number of the result set.
- #each_with_groupby_and_count(&block) ⇒ Object (also: #each_with_group_and_count)
- #each_with_weighting(&block) ⇒ Object
- #excerpt_for(string, model = nil) ⇒ Object
- #freeze ⇒ Object
- #indexes ⇒ Object
-
#initialize(*args) ⇒ Search
constructor
A new instance of Search.
- #method_missing(method, *args, &block) ⇒ Object
-
#next_page ⇒ Integer?
The next page number of the result set.
-
#offset ⇒ Integer
The current page’s offset, based on the number of records per page.
-
#per_page ⇒ Integer
The amount of records per set of paged results.
-
#populated? ⇒ Boolean
Indication of whether the request has been made to Sphinx for the search query.
-
#previous_page ⇒ Integer?
The previous page number of the result set.
-
#respond_to?(method, include_private = false) ⇒ Boolean
Returns true if the Search object or the underlying Array object respond to the requested method.
-
#results ⇒ Hash
The query result hash from Riddle.
- #search(*args) ⇒ Object
- #to_a ⇒ Object
-
#total_entries ⇒ Integer
The total number of search results available.
-
#total_pages ⇒ Integer
(also: #page_count)
The total number of pages available if the results are paginated.
Constructor Details
#initialize(*args) ⇒ Search
Returns a new instance of Search.
70 71 72 73 74 75 76 77 78 |
# File 'lib/thinking_sphinx/search.rb', line 70 def initialize(*args) ThinkingSphinx.context.define_indexes @array = [] @options = args. @args = args populate if @options[:populate] end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'lib/thinking_sphinx/search.rb', line 109 def method_missing(method, *args, &block) if is_scope?(method) add_scope(method, *args, &block) return self elsif method == :search_count return scoped_count elsif method.to_s[/^each_with_.*/].nil? && !@array.respond_to?(method) super elsif !SafeMethods.include?(method.to_s) populate end if method.to_s[/^each_with_.*/] && !@array.respond_to?(method) each_with_attribute method.to_s.gsub(/^each_with_/, ''), &block else @array.send(method, *args, &block) end end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
28 29 30 |
# File 'lib/thinking_sphinx/search.rb', line 28 def args @args end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
28 29 30 |
# File 'lib/thinking_sphinx/search.rb', line 28 def @options end |
Class Method Details
.count(*args) ⇒ Object
Deprecated. Use ThinkingSphinx.count
49 50 51 52 |
# File 'lib/thinking_sphinx/search.rb', line 49 def self.count(*args) log 'ThinkingSphinx::Search.count is deprecated. Please use ThinkingSphinx.count instead.' ThinkingSphinx.count *args end |
.facets(*args) ⇒ Object
Deprecated. Use ThinkingSphinx.facets
55 56 57 58 |
# File 'lib/thinking_sphinx/search.rb', line 55 def self.facets(*args) log 'ThinkingSphinx::Search.facets is deprecated. Please use ThinkingSphinx.facets instead.' ThinkingSphinx.facets *args end |
.matching_fields(fields, bitmask) ⇒ Object
60 61 62 63 64 65 66 67 68 |
# File 'lib/thinking_sphinx/search.rb', line 60 def self.matching_fields(fields, bitmask) matches = [] bitstring = bitmask.to_s(2).rjust(32, '0').reverse fields.each_with_index do |field, index| matches << field if bitstring[index, 1] == '1' end matches end |
.search(*args) ⇒ Object
Deprecated. Use ThinkingSphinx.search
31 32 33 34 |
# File 'lib/thinking_sphinx/search.rb', line 31 def self.search(*args) log 'ThinkingSphinx::Search.search is deprecated. Please use ThinkingSphinx.search instead.' ThinkingSphinx.search *args end |
.search_for_id(*args) ⇒ Object
Deprecated. Use ThinkingSphinx.search_for_ids
43 44 45 46 |
# File 'lib/thinking_sphinx/search.rb', line 43 def self.search_for_id(*args) log 'ThinkingSphinx::Search.search_for_id is deprecated. Please use ThinkingSphinx.search_for_id instead.' ThinkingSphinx.search_for_id *args end |
.search_for_ids(*args) ⇒ Object
Deprecated. Use ThinkingSphinx.search_for_ids
37 38 39 40 |
# File 'lib/thinking_sphinx/search.rb', line 37 def self.search_for_ids(*args) log 'ThinkingSphinx::Search.search_for_ids is deprecated. Please use ThinkingSphinx.search_for_ids instead.' ThinkingSphinx.search_for_ids *args end |
Instance Method Details
#current_page ⇒ Integer
The current page number of the result set. Defaults to 1 if no page was explicitly requested.
143 144 145 |
# File 'lib/thinking_sphinx/search.rb', line 143 def current_page @options[:page].blank? ? 1 : @options[:page].to_i end |
#each_with_groupby_and_count(&block) ⇒ Object Also known as: each_with_group_and_count
218 219 220 221 222 223 224 225 |
# File 'lib/thinking_sphinx/search.rb', line 218 def each_with_groupby_and_count(&block) populate results[:matches].each_with_index do |match, index| yield self[index], match[:attributes]["@groupby"], match[:attributes]["@count"] end end |
#each_with_weighting(&block) ⇒ Object
228 229 230 231 232 233 |
# File 'lib/thinking_sphinx/search.rb', line 228 def each_with_weighting(&block) populate results[:matches].each_with_index do |match, index| yield self[index], match[:weight] end end |
#excerpt_for(string, model = nil) ⇒ Object
235 236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/thinking_sphinx/search.rb', line 235 def excerpt_for(string, model = nil) if model.nil? && one_class model ||= one_class end populate client.excerpts( :docs => [string], :words => results[:words].keys.join(' '), :index => "#{model.source_of_sphinx_index.sphinx_name}_core" ).first end |
#freeze ⇒ Object
85 86 87 88 89 |
# File 'lib/thinking_sphinx/search.rb', line 85 def freeze populate @array.freeze self end |
#indexes ⇒ Object
209 210 211 212 213 214 215 216 |
# File 'lib/thinking_sphinx/search.rb', line 209 def indexes return [:index] if [:index] return '*' if classes.empty? classes.collect { |klass| klass.sphinx_index_names }.flatten.uniq.join(',') end |
#next_page ⇒ Integer?
The next page number of the result set. If there are no more pages available, nil is returned.
152 153 154 |
# File 'lib/thinking_sphinx/search.rb', line 152 def next_page current_page >= total_pages ? nil : current_page + 1 end |
#offset ⇒ Integer
The current page’s offset, based on the number of records per page. Or explicit :offset if given.
205 206 207 |
# File 'lib/thinking_sphinx/search.rb', line 205 def offset @options[:offset] || ((current_page - 1) * per_page) end |
#per_page ⇒ Integer
The amount of records per set of paged results. Defaults to 20 unless a specific page size is requested.
170 171 172 173 174 |
# File 'lib/thinking_sphinx/search.rb', line 170 def per_page @options[:limit] ||= @options[:per_page] @options[:limit] ||= 20 @options[:limit].to_i end |
#populated? ⇒ Boolean
Indication of whether the request has been made to Sphinx for the search query.
96 97 98 |
# File 'lib/thinking_sphinx/search.rb', line 96 def populated? !!@populated end |
#previous_page ⇒ Integer?
The previous page number of the result set. If this is the first page, then nil is returned.
161 162 163 |
# File 'lib/thinking_sphinx/search.rb', line 161 def previous_page current_page == 1 ? nil : current_page - 1 end |
#respond_to?(method, include_private = false) ⇒ Boolean
Returns true if the Search object or the underlying Array object respond to the requested method.
134 135 136 |
# File 'lib/thinking_sphinx/search.rb', line 134 def respond_to?(method, include_private = false) super || @array.respond_to?(method, include_private) end |
#results ⇒ Hash
The query result hash from Riddle.
104 105 106 107 |
# File 'lib/thinking_sphinx/search.rb', line 104 def results populate @results end |
#search(*args) ⇒ Object
248 249 250 251 252 |
# File 'lib/thinking_sphinx/search.rb', line 248 def search(*args) add_default_scope merge_search ThinkingSphinx::Search.new(*args) self end |
#to_a ⇒ Object
80 81 82 83 |
# File 'lib/thinking_sphinx/search.rb', line 80 def to_a populate @array end |
#total_entries ⇒ Integer
The total number of search results available.
193 194 195 196 197 198 |
# File 'lib/thinking_sphinx/search.rb', line 193 def total_entries populate return 0 if @results[:total_found].nil? @total_entries ||= @results[:total_found] end |
#total_pages ⇒ Integer Also known as: page_count
The total number of pages available if the results are paginated.
180 181 182 183 184 185 |
# File 'lib/thinking_sphinx/search.rb', line 180 def total_pages populate return 0 if @results[:total].nil? @total_pages ||= (@results[:total] / per_page.to_f).ceil end |