I need to update a model after delayed_job processes a task on it, e.g: foo.delay.something After something is done, I need to update the foo开发者_JAVA百科 object, what is the best way to achieve t
I am trying to run rspecs for a custom delayed job (GetPage::GetPageJob), but I have a problem. When I ru开发者_StackOverflown them, the jobs are well enqueued (that is to say, well inserted in the d
I\'m building a website with Rails which can let user check if some domains have been registered. The logic is designed like this:
I\'m using delayed_job for a priority queue. I was wondering how do i define what a failed job is? Thanks.开发者_运维百科A failed job is a job that raises an error.If you want the job to fail you can
I want to use delayed_job to send email in backend, this is /config/initializers/setup_mail.rb ActionMailer::Base.smtp_settings = {
We have a Rails application that is running in a MySQL master-slave set-up for a while now, using the master_slave_adapter plugin. Recently, there was a need for background processing of long running
I\'musing collectiveidea\'s delayed_job with my Ruby on Rails app (v2.3.8), and running about 40 background jobs with it on an 8GB RAM Slicehost machine (Ubuntu 10.04 LTS, Apache 2).
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Is there any way i can fetch start and time for my every job. I 开发者_如何学JAVAam using delayed_job. Depending on your setup, you could include actions to record the start time and end time of your
I want to start script/delayed_job start on my production when i will start my rails server. Is there anyway i can do that?