Skip to Content Skip to Search

Resque adapter for Active Job

Resque (pronounced like “rescue”) is a Redis-backed library for creating background jobs, placing those jobs on multiple queues, and processing them later.

Read more about Resque here.

To use Resque set the queue_adapter config to :resque.

Rails.application.config.active_job.queue_adapter = :resque
Methods
C

Instance Public methods

check_adapter()

# File activejob/lib/active_job/queue_adapters/resque_adapter.rb, line 31
      def check_adapter
        ActiveJob.deprecator.warn <<~MSG.squish
          The built-in `resque` adapter is deprecated and will be removed in Rails 9.0.
          Please upgrade `resque` gem to version 3.0 or later to use the `resque` gem's adapter.
        MSG
      end