Class: Chewy::Strategy

Inherits:
Object
  • Object
show all
Defined in:
lib/chewy/strategy.rb,
lib/chewy/strategy/base.rb,
lib/chewy/strategy/atomic.rb,
lib/chewy/strategy/bypass.rb,
lib/chewy/strategy/urgent.rb,
lib/chewy/strategy/sidekiq.rb,
lib/chewy/strategy/active_job.rb,
lib/chewy/strategy/lazy_sidekiq.rb,
lib/chewy/strategy/delayed_sidekiq.rb,
lib/chewy/strategy/atomic_no_refresh.rb,
lib/chewy/strategy/delayed_sidekiq/worker.rb,
lib/chewy/strategy/delayed_sidekiq/scheduler.rb

Overview

This class represents strategies stack with :base Strategy on top of it. This causes raising exceptions on every index update attempt, so other strategy must be choosen.

User.first.save # Raises UndefinedUpdateStrategy exception

Chewy.strategy(:atomic) do User.last.save # Save user according to the :atomic strategy rules end

Defined Under Namespace

Classes: ActiveJob, Atomic, AtomicNoRefresh, Base, Bypass, DelayedSidekiq, LazySidekiq, Sidekiq, Urgent

Instance Method Summary collapse

Constructor Details

#initializeStrategy

Returns a new instance of Strategy.



36
37
38
# File 'lib/chewy/strategy.rb', line 36

def initialize
  @stack = [resolve(Chewy.root_strategy).new]
end

Instance Method Details

#currentObject



40
41
42
# File 'lib/chewy/strategy.rb', line 40

def current
  @stack.last
end

#popObject



50
51
52
53
54
55
56
# File 'lib/chewy/strategy.rb', line 50

def pop
  raise "Can't pop root strategy" if @stack.one?

  result = @stack.pop.tap(&:leave)
  debug "[#{@stack.size}] -> #{result.name}, now #{current.name}" if @stack.size > 1
  result
end

#push(name) ⇒ Object



44
45
46
47
48
# File 'lib/chewy/strategy.rb', line 44

def push(name)
  result = @stack.push resolve(name).new
  debug "[#{@stack.size - 1}] <- #{current.name}" if @stack.size > 2
  result
end

#wrap(name) ⇒ Object



58
59
60
61
62
63
# File 'lib/chewy/strategy.rb', line 58

def wrap(name)
  stack = push(name)
  yield
ensure
  pop if stack
end