Answers for "prefetch_related list django"

0

prefetch_related list django

# Use the magic syntax with "*" to expand the list
Knight.objects.all().prefetch_related(*selected_attributes)
Posted by: Guest on August-11-2021
1

django select_related and prefetch_related

django select_related and prefetch_related

select_related >> foreignkey
prefetch_related >> many to many
basically they are performance boosters ,used to avoid multiple unnecessary queries
Both methods achieve the same purpose, to forego unnecessary db queries. 
But they use different approaches for efficiency..
Posted by: Guest on May-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language