2017-02-18 65 views
0

所以這是我第一次與積極的工作。我選擇了sidekiq適配器,目前我遇到了這個問題。 mypageSidekiq積極的工作職能perform_later不工作

我想排隊我的工作,一次運行一個,所以我認爲使用perform_later將是要走的路。但是,看來Rails的ActiveJob功能甚至沒有工作。

我也是目前按照本教程以及設置我的導軌的積極工作 the video tut

回答

0

您應該設置sidekiq爲默認隊列適配器application.rb中

# 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