Sha256: 591cc72b40d4bde8b89f2322c541404234e239c2260a1c9e2199769a324707f5

Contents?: true

Size: 329 Bytes

Versions: 34

Compression:

Stored size: 329 Bytes

Contents

module Workarea
  class BustDiscountCache
    include Sidekiq::Worker
    include Sidekiq::CallbacksWorker

    sidekiq_options(
      enqueue_on: { Pricing::Discount => [:save, :destroy] },
      queue: 'low',
      retry: false
    )

    def perform(*)
      Pricing::Discount::ApplicationGroup.expire_cache
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
workarea-core-3.4.25 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.24 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.23 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.22 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.21 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.20 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.19 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.18 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.17 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.16 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.15 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.14 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.13 app/workers/workarea/bust_discount_cache.rb
workarea-core-3.4.12 app/workers/workarea/bust_discount_cache.rb