class Chewy::Strategy::Bypass
This strategy basically does nothing.
Chewy.strategy(:bypass) do User.all.map(&:save) # Does nothing here # Does not update index all over the block. end
Public Instance Methods
update(type, objects, _options = {})
click to toggle source
# File lib/chewy/strategy/bypass.rb, line 11 def update(type, objects, _options = {}); end