Top "Delayed-job" questions

A Ruby library to queue and defer processing of slow methods like sending email and image resizing.

Getting delayed job to log

#Here is how I have delayed job set up. Delayed::Worker.backend = :active_record #Delayed::Worker.logger = Rails.logger Delayed::…

ruby-on-rails delayed-job
Rspec testing delayed_job

I have some complex, long-running delayed_job processes in my application. I am using Rspec to test individual methods and …

rspec delayed-job
Check whether the delayed job is running in rails

I am designing a status page where I need to show whether the delayed job is running. Please help me …

ruby-on-rails ruby-on-rails-3 delayed-job
Starting delayed_job at startup

I'm using delayed_job with capistrano and would like a way to start delayed_job on startup of the web …

ruby-on-rails capistrano delayed-job
Node.js workers/background processes

How can I create and use background jobs in node.js? I've come across two libs (node-resque and node-worker) but …

node.js delayed-job resque
Store file in directory tmp on heroku Rails

In my Delayed Job, I tried to create a file to tmp folder file_path = Rails.root.join('tmp', "#{file_…

ruby-on-rails file heroku delayed-job tmp
polling with delayed_job

I have a process which takes generally a few seconds to complete so I'm trying to use delayed_job to …

ruby-on-rails ruby-on-rails-3 backgroundworker push-notification delayed-job
Rails/Rspec: Testing delayed_job mails

Just wondering how to test that actionmailer requests are actually sent to the delayed_job que in rspec. I would …

ruby-on-rails rspec delayed-job
Delayed_job - Multiple parallel queues?

I am using delayed_job and moved to a new beefier server. So now I would like to run parallel …

ruby ruby-on-rails-3 ruby-on-rails-3.1 delayed-job
Delayed_job: how to use handle_asynchronously to work with a function?

The function is: def createuser(name,pass,time) puts name,pass,time end I try: handle_asynchronously :createuser("a","b","…

ruby ruby-on-rails-3 gem delayed-job