所以这是我第一次使用积极的工作。我选择了sidekiq适配器,目前我遇到了这个问题。
我想将我的工作排队一次运行一个,所以我想使用perform_later将是最佳选择。但是,似乎rails的ActiveJob功能甚至无法正常工作。
我目前也在关注本教程,以设置我的rails的活动作业 the video tut
答案 0 :(得分:0)
您应该在application.rb
中将sidekiq设置为默认队列适配器# config/application.rb
module YourApp
class Application < Rails::Application
# Be sure to have the adapter's gem in your Gemfile
# and follow the adapter's specific installation
# and deployment instructions.
config.active_job.queue_adapter = :sidekiq
end
end