gpt4 book ai didi

ruby-on-rails - Ruby on Rails : Once you've eager loaded an association that has conditions, 如何在不再次接触数据库的情况下获取它?

转载 作者:行者123 更新时间:2023-12-02 21:45:34 24 4
gpt4 key购买 nike

想象一个像这样的简单案例:

class Book
has_many :chapters
end

假设在我的 Controller 中我做了这样的事情:

book = Book.find(:first, 
:include => :chapters,
:conditions => ['chapters.title = ?', "In the beginning"]

现在假设我想显示该章节。如何在不再次访问数据库的情况下处理 Rails 中的章节?如果我做这样的事情:

chapters = book.chapters.select{|chapter| chapter.title == "In the beginning"}

Rails 是否会重新访问所有章节的数据库,以便可以扫描它们,然后更糟糕的是,必须在 Controller 代码中再次扫描它们?

看起来像这样使用 find 的东西:

chapters = Chapter.find_by_book_id_and_title(book.id, "In the beginning")

导致数据库再次被命中,即使章节已经被缓存。

最佳答案

使用 :include => :chapters 应该将其全部取回,根据 the AR Association API 总共产生 2 个查询。从那里您应该能够遍历数据而无需再次接触数据库。那时循环遍历 book.chapters 就很简单了,所有数据都应该在手边。

请注意,ActiveRecord 仅缓存最后一个查询,因此通过执行 Chapter.find_by_book_id_and_title('title') 等不同的查询,您之前的 Book.chapters 查询将不会被缓存(因为它完全不同)。

关于ruby-on-rails - Ruby on Rails : Once you've eager loaded an association that has conditions, 如何在不再次接触数据库的情况下获取它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2377495/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com