Hacker News new | ask | show | jobs
by Doxin 1186 days ago
For sure, but django for instance is really good at turning something that ought to be one query into N+1 queries.
1 comments

how do you deal with this?
In my experience? optimize things once it turns out to be a problem. It's not easy though and one of the many reasons I don't love the django ORM.
Don't abuse the damn ORM.

And write SQL directly for medium complexity queries.