Query Performance / N+1 (Django)

Query performance in Django is mostly about reducing the number of database queries. The classic pitfall is the N+1 problem, where iterating objects fires…