Last active
June 7, 2019 18:09
-
-
Save goutomroy/250c2206b1e48a659bf9d46ccd7b8610 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
queryset = Entry.objects.all() | |
# Evaluated and cached | |
for each in queryset: | |
print(each.headline) | |
# Using cache from previous evaluation. | |
for each in queryset: | |
print(each.headline) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment