delayed-job
Should verification emails be processed in the background?
Should verification emails be processed / sent in the background using some kind of background job (Resque, Delayed_Job, etc)?[详细]
2023-03-08 20:45 分类:问答Exact order of job execution for Rails delayed_job
I\'m using collectiveidea\'s version of delayed_job: https://github.com/collectiveidea/delayed_job Can anyone point me to the actual criteria used when a worker goes to pick the next job to work on?I[详细]
2023-03-08 00:13 分类:问答monitoring multiple delayed job workers with monit
I have read a lot about monitoring delayed_job with monit. The implementation is pretty easy and 开发者_C百科straight forward. But When one worker is not enough how do I setup monit to ensure that, le[详细]
2023-03-07 12:30 分类:问答delayed_job queue not being processed on Heroku
I\'m running a Rails 3 app with delayed_job. The issue I\'ve come across is that though the app is correctly adding jobs to the queue, they are never being processed.[详细]
2023-03-07 12:28 分类:问答Delayed_Job - handle_asynchronously with ActionMailer?
So I\'m using Delayed Jobs and I\'m trying to figure out how to get all of my mailers to be delayed. Right now, I\'ve put handle_asynchronously on all of my action mailer methods… but I don\'t think[详细]
2023-03-07 07:45 分类:问答Rails - delayed job is failing after updating rails?
I\'ve updated a couple of gems and what not, namely upgraded rails to version 3.0.7 The project has quite a few delayed_jobs in it, however now when I come to start the jobs in the terminal with 开发[详细]
2023-03-07 06:13 分类:问答Stack overflow in Cucumber step definition when re-enqueueing delayed job in .perform
I\'ve got a job that is supposed to re-enqueue itself: class TestJob def perform Delayed::Job.enqueue(TestJob.new, {priority: 0, run_at: 5.minutes.from_now})[详细]
2023-03-07 01:17 分类:问答perform not being called for Delayed Jobs
I\'m using delayed_job 2.1.4 from collectiveidea, and it seems the perform method is never called even though the jobs are processed and removed from the queue. Am I missing something?[详细]
2023-03-04 22:36 分类:问答Delayed_Job scraper works in development but not on Heroku
Here\'s the code for the scraper class Scrape def perform url = \"# a long url\" agent = Mechanize.new agent.get(url)[详细]
2023-03-03 21:08 分类:问答How to throttle Delayed job to not anger the Facebook API
I\'m building an app that will be hitting the Facebook graph api a lot. I learned they have a rate limit of 600 requests every 600 seconds.[详细]
2023-03-02 18:07 分类:问答