Class: Chewy::Strategy::Sidekiq
- Defined in:
- lib/chewy/strategy/sidekiq.rb
Overview
The strategy works the same way as atomic, but performs async index update driven by sidekiq
Chewy.strategy(:sidekiq) do User.all.map(&:save) # Does nothing here Post.all.map(&:save) # And here # It imports all the changed users and posts right here end
Direct Known Subclasses
Defined Under Namespace
Classes: Worker
Instance Method Summary collapse
Methods inherited from Atomic
Methods inherited from Base
#name, #update, #update_chewy_indices
Constructor Details
This class inherits a constructor from Chewy::Strategy::Atomic