Django - Caching
Consider this code:
What is the main problem with this code if
books = Book.objects.all()
for book in books:
print(book.author.name)What is the main problem with this code if
select_related is not used?