使用include属性
进行热切加载Post.find(:all, :include => :author)
我想知道你是否也可以急切加载计数,比如我想获得每篇文章的评论数量,而不是自己加载所有评论?
也许像
Post.find(:all, :include => [:author, "count(comments)")
我想我可以使用count_cache列。但如果可能的话,在一个包含中做这一切真的很美。
额外的奖励积分,如果有人可以展示如何不仅得到计数,但也提出一些条件,例如只计算已经批准的帖子。
答案 0 :(得分:26)
他们应该已经加载
post.comments.length
我遇到了同样的问题,因为我使用的是.count
答案 1 :(得分:4)
建立avaynshtok的答案,以下技术应该只进行2次数据库调用。
# ./app/controllers/posts_controller.rb
def index
# First load the posts
@posts = Post.all
# Then you can load a hash of author counts grouped by post_id
# Rails 4 version:
@comment_counts = Comment.group(:post_id).count
# Rails 3 version:
# @comment_counts = Comment.count(:group => :post_id)
end
然后在你看来
<!-- ./app/views/posts/index.html.erb -->
<% @posts.each do |post| %>
<!-- reference the count by the post.id -->
post_count: <%= @comment_counts[post.id] %>
<% end %>
答案 2 :(得分:2)
试试这个:
Comment.count(:group => :post)
按条件过滤:
Comment.count(:group => :post, :conditions => {:approved => true })
这些将返回哈希,其中帖子为关键字,评论数量为值。
答案 3 :(得分:0)
我刚遇到这个挑战并以这种方式解决了它:
def trainee_counts
@trainee_counts ||= Hash[Trainee.group(:klass_id).count]
end
# where the count is needed
trainee_counts[klass_id].to_i
对数据库进行一次调用,但不会加载受训人员。
答案 4 :(得分:-6)
至少在MySQL中,以两个单独的调用来执行这些操作会更快,因为您可以避免连接。我知道这不能回答你的问题,但似乎你正在努力提高速度和做事
Post.find ...
然后
post.comments.count
比在一个查询中检索两者的速度更快,内存效率更高(对数据库而言)。