我尝试使用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。我该怎么办?
抱歉我的英文不好