ruby-on-rails – Rails,如何避免在关联中的总计(count,size,counter_cache)的“N 1”查询?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails,如何避免在关联中的总计(count,size,counter_cache)的“N 1”查询?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这些机型:
  1. class Children < ActiveRecord::Base
  2. has_many :tickets
  3. has_many :movies,through: :tickets
  4. end
  5.  
  6.  
  7. class Movie < ActiveRecord::Base
  8. has_many :tickets
  9. has_many :childrens,through: :tickets
  10. belongs_to :cinema
  11. end
  12.  
  13.  
  14. class Ticket < ActiveRecord::Base
  15. belongs_to :movie,counter_cache: true
  16. belongs_to :children
  17. end
  18.  
  19.  
  20. class Cinema < ActiveRecord::Base
  21. has_many :movies,dependent: :destroy
  22. has_many :childrens,through: :movies
  23. end

我现在需要的是“电影院”的页面,我想打印这个电影院的孩子的总和(数量,大小?),所以我写道:@H_404_5@

>在cinemas_controller.rb中:@H_404_5@

@childrens = @ cinema.childrens.uniq@H_404_5@

>在电影院/ show.html.erb:@H_404_5@

<%@ childrens.each do | children | %><%= children.movi​​es.size%><%end%>@H_404_5@

但显然我有弹珠宝,提醒我的Counter_cache,我不知道在哪里放这个counter_cache,因为电影的不同的id.@H_404_5@

而且没有counter_cache,我不是我想要的,因为我想要一个数字,这个电影院里有多少孩子从这个电影院的许多日子里把他们从门票里拿走.@H_404_5@

如何?@H_404_5@

UPDATE@H_404_5@

如果在我看来我使用这个代码:@H_404_5@

  1. <% @childrens.each do |children| %>
  2. <%= children.movies.where(cinema_id: @cinema.id).size %>
  3. <% end %>

宝石子弹不要说我什么,一切都正常工作.@H_404_5@

但我有一个问题:这种查询数据库的方式比较重,因为视图中的代码?@H_404_5@

解决方法

这可能会帮助你.
  1. @childrens_count = @cinema.childrens.joins(:movies).group("movies.children_id").count.to_a

猜你在找的Ruby相关文章