I have a fresh rails 3 app, here\'s my Gemfile: source \'http://rubygems.org\' gem \'rails\', \'3.0.0\' gem \'delayed_job\'
I\'m working with Delayed::Job recently, and I want to find out if there开发者_如何学C\'s a specific job is enqueued or not, any idea on that?The jobs are all written to a table named delayed_jobs, an
Does Delayed::Job work with modules? I have trouble with it: module SomeModule class SomeClass def regular_method
Has anyone gotten Delayed Job working on Heroku Beta for Rails 3? We switched over to rails 3 and now I can no longer activate dela开发者_如何学Goyed job with \"rake jobs:work\"do you have active wor
I\'m attempting to use handle_asynchronously on a me开发者_C百科thod of a class, as per the following:
I\'m using the Delayed Jobs plugin for Rails 2, and every time I try to modify a model and save it in the \"perform\" method required by Delayed Jobs, it fails out (no error messages or anything, it\'
I finally got the DelayedJobs plugin working for Rails 2, and it does indeed work fine...as long as I run:
I mean, let\'s say an User signs up and buy a monthly membership. Is it a good idea set a job to run in a month to see if the user renewed his membership and take appropriate actions? Is there a bette
I\'m using the delayed_job gem here: https://github.com/collectiveidea/delayed_job I have the following in an observer:
With DelayedJob, If there\'s开发者_如何学JAVA a big backlog of jobs and the workers can\'t keep up to run the jobs at their specified times, it seems DJ selects the earliest run time over priority.