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/atomic_no_refresh.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, LazySidekiq, Sidekiq, Urgent

Instance Method Summary collapse

Constructor Details

#initializeStrategy

Returns a new instance of Strategy.



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

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

Instance Method Details

#currentObject



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

def current
  @stack.last
end

#popObject



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

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



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

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

#wrap(name) ⇒ Object



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

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