Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save goutomroy/26463f7367efd759a519367c52a5eae6 to your computer and use it in GitHub Desktop.
Save goutomroy/26463f7367efd759a519367c52a5eae6 to your computer and use it in GitHub Desktop.
# Don't
count = len(Entry.objects.all()) # Evaluates the entire queryset
# Do
count = Entry.objects.count() # Executes more efficient SQL to determine count
# Don't
qs = Entry.objects.all()
if qs:
pass
# Do
qs = Entry.objects.exists()
if qs:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment