https://kotlinlang.org logo
t

tjohnn

06/14/2019, 2:07 PM
Just curious, from docs on eager loading:
Copy code
Exposed can eager load them at the time of the parent query, this is prevents the classic "N+1" problem as references can be aggregated and loaded in a single query
Does it mean only one query would be made to database to query the parent and its child references?
t

tapac

06/14/2019, 8:15 PM
No, each reference will be loaded by separate query.
t

tjohnn

06/14/2019, 10:13 PM
Okay I see
9 Views