I\'m trying to utilize Delayed Job in my Rails 3 app, but keep hitting a snag. The jobs keep failing with the error: Job failed to load: uninitialized constant CrawlJob.
I have one method that needs to handle large number of requests. I\'m using Rack for it. What it does is that it receive parameters and it creates a delayed_job task:
I am having problems getting delayed_job to restart. When I login and run rake delayed_job RAILS_ENV=production everything works fine and all the jobs are processed, however if run RAILS_ENV=producti
I\'m following this example here: http://erikonrails.snowedin.net/?p=230 I added: lib/delayed_job_spec_helper.rb
Started to have an issue this afternoon with the delayed_job process, found that the daemons were dead and restarted them...
I\'m running the delayed_job daemon using daemon-spawn gem, however, whenever there is a database locked error or any other type of error for that matter, the delayed_job daemon stops/quits.Is there a
Delayed job is great, but I would like to change its timer interval to be more frequent (every 2 second) to meet my special need.
Is it possible to do the following using delayed_job: Define a class called Tasks Have a method in Tasks run after every 5 minutes: Tasks.do_processing
I\'ve read the docs, but I\'m unsure how to integrate it into my application. Currently I have a user input a video url, I take that url and make it a link in the view. Then I use the Embedly API to f
I would like to be able to perform some tests that require a worker to be running. In order to accompli开发者_StackOverflow中文版sh this created this test helper method: