使用 ActiveJob 时是否仍应仅传递对象 ID?
Should you still pass only the object id when using ActiveJob?
在 ActiveJob 中执行以下操作的优缺点是什么:
选项A:
# Controller
MyJob.perform_later(object.id)
# my_job.rb
def perform(object_id)
object = Object.find(object_id)
# do stuff
end
选项 B:
# Controller
MyJob.perform_later(object)
# my_job.rb
def perform(object)
# do stuff
end
ActiveJob
现在 uses the new Globalid
library 在幕后 serialize/deserialize 一个 ActiveRecord 实例,因此您现在可以传递一个 ActiveRecord
对象。
我个人更喜欢继续传递 ID,因为它使代码与其他组件的互操作性更强,并且不会将我的代码无限期地绑定到特定的 ActiveJob
行为,但这更多是个人选择。
在 ActiveJob 中执行以下操作的优缺点是什么:
选项A:
# Controller
MyJob.perform_later(object.id)
# my_job.rb
def perform(object_id)
object = Object.find(object_id)
# do stuff
end
选项 B:
# Controller
MyJob.perform_later(object)
# my_job.rb
def perform(object)
# do stuff
end
ActiveJob
现在 uses the new Globalid
library 在幕后 serialize/deserialize 一个 ActiveRecord 实例,因此您现在可以传递一个 ActiveRecord
对象。
我个人更喜欢继续传递 ID,因为它使代码与其他组件的互操作性更强,并且不会将我的代码无限期地绑定到特定的 ActiveJob
行为,但这更多是个人选择。