I have the following code :
Post.where("user_id IN [1, 2, 3, 4, 5, 6]").includes(:authors, :comments).paginate(page: params[:page], per_page: 30)
what i want here is to eager load just 8 comments
per post using will_paginate
, is this possible ? and how ?
Not a tested answer
I don't see that possible from there, but:
I am not sure if
joins
andincludes
can be called together.This would give you a relation for comments you can continue working on, and you will have eager loaded posts:
If you want to get the posts from
@comments
I would do this:Then use and paginate it: