Skip to content

Instantly share code, notes, and snippets.

@sajoku
Created November 27, 2018 12:07
Show Gist options
  • Save sajoku/8a5eb059505526bca4b33c1ff597c1a0 to your computer and use it in GitHub Desktop.
Save sajoku/8a5eb059505526bca4b33c1ff597c1a0 to your computer and use it in GitHub Desktop.
Immediate evaluation of a QuerySet vs lazy
# This way executes two queries because if not evaluates the base_set argument
def execute_query(base_set=None):
if not base_set: # Eecutes the queryset thrown in
base_set = YourObject.objects
base_set.filter(pk=1) #this is where the queryset should be executed
# Checking with is None does not evaulate the given base_set
def execute_query(base_set=None):
if base_set is None: # Does not execute the given queryset.
base_set = YourObject.objects
base_set.filter(pk=1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment