|
|
|
|
|
by asalahli
260 days ago
|
|
Avoiding N+1 doesn't have to mean limiting yourself to 1 query. You can still fetch the posts in one query and the comments of _all_ posts in a separate query, just don't issue a query for _each_ post. More formally, the number of queries should be constant and not linearly scaling with the number of rows you're processing. |
|