Skip to Content Skip to Search

Sneakers adapter for Active Job

A high-performance RabbitMQ background processing framework for Ruby. Sneakers is being used in production for both I/O and CPU intensive workloads, and have achieved the goals of high-performance and 0-maintenance, as designed.

Read more about Sneakers here.

To use Sneakers set the queue_adapter config to :sneakers.

Rails.application.config.active_job.queue_adapter = :sneakers
Methods
C
N

Class Public methods

new()

# File activejob/lib/active_job/queue_adapters/sneakers_adapter.rb, line 28
def initialize
  @monitor = Monitor.new
end

Instance Public methods

check_adapter()

# File activejob/lib/active_job/queue_adapters/sneakers_adapter.rb, line 21
      def check_adapter
        ActiveJob.deprecator.warn <<~MSG.squish
          The built-in `sneakers` adapter is deprecated and will be removed in Rails 8.2.
          Please migrate from `sneakers` gem to `kicks` gem version 3.1.1 or later to use `ActiveJob` adapter from `kicks`.
        MSG
      end