运行 Rails 4.2.0,所以我使用带有 Sidekiq 后端的 ActiveJob。我需要调用定期安排的后台作业,所以我希望使用 Clockwork,但我还没有看到任何关于如何将它与 ActiveJob 一起使用的示例。
这是基于 Clockwork Github 示例的我的 lib/clock.rb:
require 'activejob'
module Clockwork
handler do |job, time|
puts "Running #{job}, at #{time}"
ProductUpdateJob.perform_later
end
every(30.seconds, 'ProductUpdateJob.perform_later')
end
更新:
我能够让它适合我的情况,但我对解决方案并不完全满意,因为我必须加载整个环境。我只想要求最低限度来运行 ActiveJobs。
Dir["./jobs/*.rb"].each {|file| require file }
require 'clockwork'
require './config/boot'
require './config/environment'
#require 'active_job'
#require 'active_support'
module Clockwork
handler do |job, time|
puts "Running #{job}, at #{time}"
#send("#{job}")
#puts "#{job}".constantize
"#{job}".constantize.perform_later
end
every(10.seconds, 'ProductUpdateJob')
end
最佳答案
这是一个工作版本
require 'clockwork'
require './config/boot'
require './config/environment'
module Clockwork
handler do |job, time|
puts "Running #{job}, at #{time}"
"#{job}".constantize.perform_later
end
every(10.seconds, 'ProductUpdateJob')
end
关于ruby-on-rails - 发条来排队 ActiveJob 后台作业,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28016149/