Django - Caching
What is wrong with this code snippet?
authors = Author.objects.prefetch_related(books)
for author in authors:
print(author.books.all())