class ActiveJob::QueueAdapters::QueAdapter
Rails.application.config.active_job.queue_adapter = :que
To use Que set the queue_adapter config to :que
.
Read more about Que here.
Ruby and PostgreSQL that manages jobs using advisory locks.
the same ACID guarantees as the rest of your data. Que is a queue for
improves the reliability of your application by protecting your jobs with
Que is a high-performance alternative to DelayedJob or QueueClassic that
== Que adapter for Active Job
def enqueue(job) #:nodoc:
def enqueue(job) #:nodoc: que_job = JobWrapper.enqueue job.serialize, priority: job.priority job.provider_job_id = que_job.attrs["job_id"] que_job end
def enqueue_at(job, timestamp) #:nodoc:
def enqueue_at(job, timestamp) #:nodoc: que_job = JobWrapper.enqueue job.serialize, priority: job.priority, run_at: Time.at(timestamp) job.provider_job_id = que_job.attrs["job_id"] que_job end