sunspot_index_queue icon indicating copy to clipboard operation
sunspot_index_queue copied to clipboard

Asynchronous Solr indexing support for the sunspot gem.

Results 8 sunspot_index_queue issues
Sort by recently updated
recently updated
newest added

(36.8ms) ROLLBACK Completed 500 Internal Server Error in 882ms (ActiveRecord: 533.4ms) NoMethodError - undefined method `hexists' for nil:NilClass Did you mean? exit: sunspot_index_queue (1.1.4) lib/sunspot/index_queue/entry/redis_impl.rb:120:in`add' sunspot_index_queue (1.1.4) lib/sunspot/index_queue/entry.rb:92:in `enqueue' sunspot_index_queue...

Updated AR impl for rails 4.1

When retrieving the entries mongoid seems to be converting the record_id from a String to a BSON::ObjectId, and so when calling adapter.load_all(ids) and the ids are not strings it returns...

By default using Sunspot::IndexQueue::SessionProxy.new configures things to run with default configuration and ignoring the config/sunspot.yml file. Which ignores key parameters like the port solr is running on) Could the documentation...

Hi, found that if queue contains a lot of records (in my case ≈250000 items) indexing works incredibly slow. This line cause the troubles: ``` ruby doc = collection.find_and_modify(:update =>...

What I am doing is: ``` ruby class Site < ActuveRecord::Base has_many :site_relationships, :dependent => :destroy has_many :profiles, :through => :site_relationships after_save :reindex_profiles def reindex_profiles Sunspot.index!(self.profiles) end end ``` But...

Query processing is launched in loop with timeout in 30 seconds. It works great until some records from the mongoid model will not be deleted. After that all the queries...