I have a problem using Delayed::Job 2.1.4 on a very simple class, which is: class C2dmJob < Struct.new(:msg)
Having a bit of a problem running multiple workers. When creating workers with rake jobs:work jobs run without and problem, even when invoking it multiple times, but when creating workers with ruby s
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not generally applic
I want to use delayed_job to execute a function from controller. The function is stored in module lib/site_request.rb:
When running a job with delayed_job, I get errors when trying to access the Dalli Cache. The Dalli cache is initialized in environment.rb with the following...
I want to know if there are any good solutions for autoscaling dynos AND workers on Heroku in a production environment (probably a different solution for each of those, as they are pretty unrelated).
My delayed job processes seem to randomly disappear, I am working on a longer term fix for this, but in the mean time, I think simply restarting them when I need them should do the trick. Since I have
In my rails app, i have a timer 开发者_Python百科ticking every second based on which different objects change their state. Thus, i decided to use Observer for this. However, when i ran the observer, i
My app has an API that users can request data. Sometimes that data takes time to process and is breaking my code.
Just wondering how to test that actionmailer requests are actually sent to the delayed_job que in rspec.