Rails 3.1 记录对象在控制器操作中实例化两次?
我有一个控制器,它基本上获取记录并实例化为对象。
当它运行时,该对象会使用不同的 object_id 实例化两次。
例如,
def index
@users= Users.all
puts @users.object_id
end
这会在运行 Rails 的终端上打印两个不同的 id(仅在 Rails 3.1 中)。在 Rails 3 中它只有一个 id。它还将两个不同的用户对象实例化为对数据库或资源的两个查询。
我不知道。我什至不知道该用谷歌搜索什么。我看到了一些关于 ActiveRecord::IdentityMaps 的内容,但我不明白这里出了什么问题。
I have a controller that basically fetches a record and instantiates into an object.
When it runs, the object is instantiated twice with different object_ids.
e.g.
def index
@users= Users.all
puts @users.object_id
end
This prints two different ids on the terminal where rails is running (only in rails 3.1). In Rails 3 its only one id. It also instantiated two different user objects to two queries to the DB or Resource.
I have no clue. I don't even know what to google for. I saw something about ActiveRecord::IdentityMaps
but I don't understand what's wrong here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论