delayed-job
Setting up the Delay Jobs gem
I am using Ruby on Rails 3.0.9 and I am trying to setup the delay_job gem for my web application in order to send emails in this way:[详细]
2023-03-27 04:12 分类:问答Initialize the Delayed Jobs gem by starting the workers on application start
I am using Ruby on Rails 3.0.9 and I am trying to setup the delay_job gem. All works if, after rebooting the Apache2 server, I run in the Terminal\\Console following commands:[详细]
2023-03-26 17:42 分类:问答Trouble implementing ActiveModel with class attributes on using DelayedJob
I am using Ruby on Rails 3.0.9 and DelayedJob 2.1 and I am trying to implement a \"Contact Us\" form myself using ActiveModel functionalities. So...[详细]
2023-03-26 16:32 分类:问答Delayed searchable jobs in Rails
Is there some background processor in ruby which would allow to find an existing not started delayed jobs by custom key?[详细]
2023-03-26 08:53 分类:问答How do you tell a specific Delayed::Job to run in console?
For some reason, Delayed::Job\'s has decided to queue up but not excecute anything 开发者_JAVA技巧even though I\'ve restarted it several times, even kill -9\'d it and restarted it. It won\'t run any j[详细]
2023-03-25 03:11 分类:问答How to know which rails environment is running in delayed job
I have a delayed job which is working perfectly fine. I want to know which environment is this. Is it production or development or staging. Check the code please. ENV[\"RAILS_ENV\"] is nuil?[详细]
2023-03-24 23:43 分类:问答Undefined method and bad serialization with delayed job on lion
I am getting some odd behavior on a newly set up mac with os x lion.Our app runs fine in the development environment locally but in the test environment delayed job is not serializing correctly.On my[详细]
2023-03-24 21:17 分类:问答Not able to hit mixpanel in delayed job?
I am using delayed_job to do some background task. In between I want to track some events. I am using mixpanel gem to track the events. In controller its working perfectly fine. But not in Delayed Job[详细]
2023-03-24 14:16 分类:问答in delayed_job, are hooks called when Delayed::Worker.delay_jobs is false?
I\'m using collectiveidea/delayed_job. In my RSpec tests, the [:before, :after, :success] hooks aren\'t getting called as I would expect.[详细]
2023-03-23 20:56 分类:问答Delayed_Job: accessing job metadata and/or avoiding duplicate jobs
i\'m trying to get the run_at datetime in a custom job class. my code looks like this: class MyCustomJob < Struct.new开发者_如何学JAVA(:my_object)[详细]
2023-03-23 01:57 分类:问答