I have the following two cases. Of the two, I am not able to tell which is the best order to take. Is there a performance issue in either of them??
Case 1
Model.objects.filter(item1=4,item2=5).select_related('store').get(id=1)
Case 2
Model.objects.select_related('store').filter(item1=4,item2=5).get(id=1)
You can inspect the query that Django makes by looking at the
connections.queries
list. So you can print the last query with:For the first query, we get:
whereas for the latter, it is:
Both produce thus exactly the same query:
Where the parts in boldface is the effect of the
.select_related(…)
call [Django-doc].