I have upgraded a Rails 2.3.5 app to Rails 3.0.6. In the process I have also upgraded the resque from 1.9.1 to 1.15.0 and resque_scheduler from 1.9.1 to 1.9.9. The following commands used to work fine
I am using resque status. In my Gemfile I have gem \'resque-status\' In resque_conf.rb I have require \'resque/status_server\'
I am building a job that is going to fetch and re-validate information from a remote website. I actually have it already implemented with a queue that works kinda like this:
Should verification emails be processed / sent in the background using some kind of background job (Resque, Delayed_Job, etc)?
I\'m using Resque with Redis to process a background job. I\'d like to call the method, Resque.enqueue(MyModel) just one time every hour to do a background task.
I\'m following the configuration guidelines for installing resque. I\'m met with a (LoadError). 开发者_开发百科I\'m using RVM 1.9.2-p180, rails 3.0.6, and POW. This is probably an issue with my load p
I\'m getting the following error in log/resque-0.log: rake aborted! non-absolute home /srv/myapp/current/Rakefile:4
I\'m creating an IMAP object in one job a开发者_Python百科nd need to pass it to other jobs in Resque.What\'s the best way to pass the IMAP object since it\'s not serializable?There is no way to pass i
I\'m just getting resque-schedule up and running and it works fine with one schedule task. However, when I 开发者_开发百科added a second on the same cron schedule it seems it is stomping on itself. He
I want to start redis and redis-scheduler from a rake开发者_StackOverflow中文版 task so I\'m doing the following: