我可以在没有启动工作人员的情

时间:2016-02-08 21:07:16

标签: ruby-on-rails ruby resque

我尝试使用resque并且我有下一个问题 - 如果我有这个方法的工作班

class Foo
  @queue = :foobar
  class << self
    def async_execute!(foobar_id, str)
      Resque.enqueue(Foo, foobar_id, str)
    end

    def perform(foobar_id, str)
      puts "Hello to #{str} from #{foobar_id}" 
    end
  end
end

但是我不希望工作人员会运行并执行这项工作,我想简单地将这个工作添加到队列中并用rake task手动启动worker。我该怎么办?

抱歉我的英文不好

0 个答案:

没有答案