Flask - Performance Optimization
Given the code:
What is the effect of
users = User.query.options(joinedload(User.posts)).filter(User.active == True).all()
What is the effect of
joinedload(User.posts) here?