我正在为我的应用程序中的某些进程使用delayed_job。它没有任何效果并即时运行代码。以下是代码。
Module1::some_definition(param).delay(priority=>3, :run_at=>2.minutes.from_now)
我做错了吗?
更新: 这是 dimitko 建议我所做的。但我仍然得到错误。
class User < ActiveRecord::Base
def do_something
#Google is my module and the do_some_process is definition.
Google.delay.do_some_process
end
end