Flask - Performance Optimization
Given the following Flask-SQLAlchemy code, what happens when
Assuming
print(user.posts) is executed?user = User.query.first() print(user.posts)
Assuming
posts relationship is defined with lazy='select'.