class Chewy::Strategy::Urgent
This strategy updates index on demand. Not the best strategy in case of optimization. If you need to update indexes with bulk API calls - use :atomic instead.
Chewy.strategy(:urgent) do User.all.map(&:save) # Updates index on every `save` call end
Public Instance Methods
update(type, objects, _options = {})
click to toggle source
# File lib/chewy/strategy/urgent.rb, line 12 def update(type, objects, _options = {}) type.import!(Array.wrap(objects)) end