Last active
June 8, 2019 11:54
-
-
Save goutomroy/dd2340a587a35b68a193f5fc33568761 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't. Needs database hit | |
blog_id = Entry.objects.get(id=200).blog.id | |
# Do. The foreign key is already cached, so no database hit | |
blog_id = Entry.objects.get(id=200).blog_id | |
# Do. No database hit | |
blog_id = Entry.objects.select_related('blog').get(id=200).blog.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment