I am enqueuing jobs in my Rakefile\'s cron task, as such: Delayed::Job.enqueue(MyJob.new(variable)) I have a class in /lib as follows:
I\'m in the process of optimizing my SQL queries on my heroku server so I can speed things up on one particular request. Right now I\'m mainly looking at condensing all the INSERT queries into the few
I\'ve been using AR_Mailer for about 6 months without ever running into problems. I recently added DelayedJob for some administrative background jobs. Since DelayedJob also handles emails very well (t
From a controller, is there a way to call a method in a model with a file as a parameter, without getting an uninitialized stream error when you try to use the received file in the model?
So I have a class t开发者_运维知识库hat gets loaded and is supposed to be run by delayed_jobs and to get some parameters into the class I have used the Struct trick, this works on development but not
Trying to queue a job with delayed_job as follows: Delayed::Job.enqueue(BackgroundProcess.new(current_user, object))
I am using the delayed_job gem like this: Delayed开发者_JS百科::Job.enqueue Note.new(parameter_hash)
I allow users on my site to rotate their photos. I accomplish this by an ajax call to a Delayed_Job process (via Heroku) that rotates the photo. After they press \"rotate photo\", I show a loading spi
I\'m trying to get a progress bar going with delayed job but I don\'t know how check the status of the object.
I\'ve been using delayed job for a while now w/o issue on my rails 3 heroku app. Then the other day it error\'d on all the jobs. Now I\'m stuck with the delayed job record with the last error but stuc