Module: Sunspot::MongoMapper::Searchable::ClassMethods
- Defined in:
- lib/sunspot/mongo_mapper/searchable.rb
Class Method Summary collapse
-
.extended(base) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#searchable? ⇒ Boolean
Classes that have been defined as searchable return
true
for this method. -
#solr_clean_index_orphans ⇒ Object
Find IDs of records of this class that are indexed in Solr but do not exist in the database, and remove them from Solr.
- #solr_execute_search(options = {}) ⇒ Object
- #solr_execute_search_ids(options = {}) ⇒ Object
-
#solr_index(opts = {}) ⇒ Object
Add/update all existing records in the Solr index.
-
#solr_index_orphans ⇒ Object
Return the IDs of records of this class that are indexed in Solr but do not exist in the database.
-
#solr_reindex(options = {}) ⇒ Object
Completely rebuild the index for this class.
-
#solr_remove_all_from_index ⇒ Object
Remove instances of this class from the Solr index.
-
#solr_remove_all_from_index! ⇒ Object
Remove all instances of this class from the Solr index and immediately commit.
-
#solr_search(options = {}, &block) ⇒ Object
Search for instances of this class in Solr.
-
#solr_search_ids(&block) ⇒ Object
Get IDs of matching results without loading the result objects from the database.
Class Method Details
.extended(base) ⇒ Object
:nodoc:
103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 103 def self.extended(base) #:nodoc: class <<base alias_method :search, :solr_search unless method_defined? :search alias_method :search_ids, :solr_search_ids unless method_defined? :search_ids alias_method :remove_all_from_index, :solr_remove_all_from_index unless method_defined? :remove_all_from_index alias_method :remove_all_from_index!, :solr_remove_all_from_index! unless method_defined? :remove_all_from_index! alias_method :reindex, :solr_reindex unless method_defined? :reindex alias_method :index, :solr_index unless method_defined? :index alias_method :index_orphans, :solr_index_orphans unless method_defined? :index_orphans alias_method :clean_index_orphans, :solr_clean_index_orphans unless method_defined? :clean_index_orphans end end |
Instance Method Details
#searchable? ⇒ Boolean
Classes that have been defined as searchable return true
for this method.
Returns
true
286 287 288 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 286 def searchable? true end |
#solr_clean_index_orphans ⇒ Object
Find IDs of records of this class that are indexed in Solr but do not exist in the database, and remove them from Solr. Under normal circumstances, this should not be necessary; this method is provided in case something goes wrong.
270 271 272 273 274 275 276 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 270 def solr_clean_index_orphans solr_index_orphans.each do |id| new do |fake_instance| fake_instance.id = id end.solr_remove_from_index end end |
#solr_execute_search(options = {}) ⇒ Object
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 290 def solr_execute_search( = {}) .assert_valid_keys(:include, :select) search = yield unless .empty? search.build do |query| if [:include] query.data_accessor_for(self).include = [:include] end if [:select] query.data_accessor_for(self).select = [:select] end end end search.execute end |
#solr_execute_search_ids(options = {}) ⇒ Object
306 307 308 309 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 306 def solr_execute_search_ids( = {}) search = yield search.raw_results.map { |raw_result| raw_result.primary_key.to_i } end |
#solr_index(opts = {}) ⇒ Object
Add/update all existing records in the Solr index. The batch_size
argument specifies how many records to load out of the database at a time. The default batch size is 500; if nil is passed, records will not be indexed in batches. By default, a commit is issued after each batch; passing false
for batch_commit
will disable this, and only issue a commit at the end of the process. If associated objects need to indexed also, you can specify include
in format accepted by MongoMapper to improve your sql select performance
Options (passed as a hash)
- batch_size<Integer>
-
Batch size with which to load records. Passing ‘nil’ will skip batches. Default is 500.
- batch_commit<Boolean>
-
Flag signalling if a commit should be done after after each batch is indexed, default is ‘true’
- include<Mixed>
-
include option to be passed to the MongoMapper find, used for including associated objects that need to be indexed with the parent object, accepts all formats MongoMapper::Base.find does
- first_id
-
The lowest possible ID for this class. Defaults to 0, which is fine for integer IDs; string primary keys will need to specify something reasonable here.
Examples
# index in batches of 500, commit after each
Post.index
# index all rows at once, then commit
Post.index(:batch_size => nil)
# index in batches of 500, commit when all batches complete
Post.index(:batch_commit => false)
# include the associated +author+ object when loading to index
Post.index(:include => :author)
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 225 def solr_index(opts={}) = { :batch_size => 500, :batch_commit => true, :include => self.[:include], :first_id => 0}.merge(opts) unless [:batch_size] Sunspot.index!(all(:include => [:include])) else batch_size = [:batch_size] record_count = count page = 1 while (page - 1) * batch_size < record_count solr_benchmark [:batch_size], page do records = paginate(:page => page, :per_page => batch_size, :order => "id") Sunspot.index(records) end Sunspot.commit if [:batch_commit] page += 1 end Sunspot.commit unless [:batch_commit] end end |
#solr_index_orphans ⇒ Object
Return the IDs of records of this class that are indexed in Solr but do not exist in the database. Under normal circumstances, this should never happen, but this method is provided in case something goes wrong. Usually you will want to rectify the situation by calling #clean_index_orphans or #reindex
Returns
- Array
-
Collection of IDs that exist in Solr but not in the database
255 256 257 258 259 260 261 262 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 255 def solr_index_orphans count = self.count indexed_ids = solr_search_ids { paginate(:page => 1, :per_page => count) }.to_set all(:select => 'id').each do |object| indexed_ids.delete(object.id) end indexed_ids.to_a end |
#solr_reindex(options = {}) ⇒ Object
Completely rebuild the index for this class. First removes all instances from the index, then loads records and indexes them.
See #index for information on options, etc.
182 183 184 185 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 182 def solr_reindex( = {}) solr_remove_all_from_index solr_index() end |
#solr_remove_all_from_index ⇒ Object
Remove instances of this class from the Solr index.
163 164 165 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 163 def solr_remove_all_from_index Sunspot.remove_all(self) end |
#solr_remove_all_from_index! ⇒ Object
Remove all instances of this class from the Solr index and immediately commit.
172 173 174 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 172 def solr_remove_all_from_index! Sunspot.remove_all!(self) end |
#solr_search(options = {}, &block) ⇒ Object
Search for instances of this class in Solr. The block is delegated to the Sunspot.search method - see the Sunspot documentation for the full API.
Example
Post.search(:include => [:blog]) do
keywords 'best pizza'
with :blog_id, 1
order :updated_at, :desc
facet :category_ids
end
Options
- :include
-
Specify associations to eager load
- :select
-
Specify columns to select from database when loading results
Returns
- Sunspot::Search
-
Object containing results, totals, facets, etc.
138 139 140 141 142 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 138 def solr_search( = {}, &block) solr_execute_search() do Sunspot.new_search(self, &block) end end |
#solr_search_ids(&block) ⇒ Object
Get IDs of matching results without loading the result objects from the database. This method may be useful if search is used as an intermediate step in a larger find operation. The block is the same as the block provided to the #search method.
Returns
- Array
-
Array of IDs, in the order returned by the search
154 155 156 157 158 |
# File 'lib/sunspot/mongo_mapper/searchable.rb', line 154 def solr_search_ids(&block) solr_execute_search_ids do solr_search(&block) end end |