Rails eager loading of counts?

后端 未结 5 1013
暖寄归人
暖寄归人 2021-02-02 14:50

Eager loading is nice with the include attribute

Post.find(:all, :include => :author)

I\'m wondering if you can also eager load counts, like

5条回答
  •  不知归路
    2021-02-02 15:14

    they should already be loaded use

    post.comments.length
    

    I was having this same problem because I was using .count

提交回复
热议问题