Rails 3.1 记录对象在控制器操作中实例化两次?

发布于 2024-12-11 03:18:42 字数 352 浏览 0 评论 0原文

我有一个控制器,它基本上获取记录并实例化为对象。
当它运行时,该对象会使用不同的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文