Writing

Blog

Notes on building software: backend systems, the modern React stack, and lessons from shipping real projects.

2 min read

Killing N+1 Queries in Django

The N+1 query problem is the most common performance bug in Django apps, and the most quietly damaging. Here is how to spot it and the ORM tools that fix it.

  • Django
  • Python
  • Performance
Read post