delayed-job
Job failed to load: uninitialized constant with Delayed Job and Rails 3
I\'m trying to utilize Delayed Job in my Rails 3 app, but keep hitting a snag. The jobs keep failing with the error: Job failed to load: uninitialized constant CrawlJob.[详细]
2023-02-20 15:29 分类:问答How to easily delay Query insertion in Rails 3 app
I have one method that needs to handle large number of requests. I\'m using Rack for it. What it does is that it receive parameters and it creates a delayed_job task:[详细]
2023-02-19 19:03 分类:问答Can't start the delayed_jobs process
I am having problems getting delayed_job to restart. When I login and run rake delayed_job RAILS_ENV=production everything works fine and all the jobs are processed, however if run RAILS_ENV=producti[详细]
2023-02-19 12:21 分类:问答rspec - adding a helper module?
I\'m following this example here: http://erikonrails.snowedin.net/?p=230 I added: lib/delayed_job_spec_helper.rb[详细]
2023-02-18 21:02 分类:问答Delayed_job returns "syntax error" for process daemon and rake task
Started to have an issue this afternoon with the delayed_job process, found that the daemons were dead and restarted them...[详细]
2023-02-18 01:20 分类:问答delayed_job daemon quitting on errors
I\'m running the delayed_job daemon using daemon-spawn gem, however, whenever there is a database locked error or any other type of error for that matter, the delayed_job daemon stops/quits.Is there a[详细]
2023-02-17 20:50 分类:问答Can you alter the polling time interval (5 seconds) for delayed_job worker?
Delayed job is great, but I would like to change its timer interval to be more frequent (every 2 second) to meet my special need.[详细]
2023-02-17 20:15 分类:问答Recurring schedule using delayed_job
Is it possible to do the following using delayed_job: Define a class called Tasks Have a method in Tasks run after every 5 minutes: Tasks.do_processing[详细]
2023-02-17 17:37 分类:问答How should I be using delayed_job?
I\'ve read the docs, but I\'m unsure how to integrate it into my application. Currently I have a user input a video url, I take that url and make it a link in the view. Then I use the Embedly API to f[详细]
2023-02-16 21:54 分类:问答How to run and stop a delayed_jobs worker in a Thread or Subprocess for testing purposes
I would like to be able to perform some tests that require a worker to be running. In order to accompli开发者_StackOverflow中文版sh this created this test helper method:[详细]
2023-02-16 05:48 分类:问答