Created
November 27, 2018 12:07
-
-
Save sajoku/8a5eb059505526bca4b33c1ff597c1a0 to your computer and use it in GitHub Desktop.
Immediate evaluation of a QuerySet vs lazy
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
# 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