Class: Chewy::Strategy::Resque

Inherits:
Atomic show all
Defined in:
lib/chewy/strategy/resque.rb

Overview

The strategy works the same way as atomic, but performs async index update driven by resque

Chewy.strategy(:resque) 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

Defined Under Namespace

Classes: Worker

Instance Method Summary collapse

Methods inherited from Atomic

#initialize, #update

Methods inherited from Base

#name, #update

Constructor Details

This class inherits a constructor from Chewy::Strategy::Atomic

Instance Method Details

#leaveObject



22
23
24
# File 'lib/chewy/strategy/resque.rb', line 22

def leave
  @stash.all? { |type, ids| ::Resque.enqueue(Chewy::Strategy::Resque::Worker, type.name, ids) }
end