Class: Chewy::Strategy::Urgent

Inherits:
Base show all
Defined in:
lib/chewy/strategy/urgent.rb

Overview

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

Instance Method Summary collapse

Methods inherited from Base

#leave, #name

Instance Method Details

#update(type, objects, options = {}) ⇒ Object



12
13
14
# File 'lib/chewy/strategy/urgent.rb', line 12

def update type, objects, options = {}
  type.import!(Array.wrap(objects))
end