Is the Django ORM slow?
Ans: Yes, it's at least slower than raw sql queries
When should You use Model.objects.select_related(...)?
Ans:
What is a template in Django?
How would You extend/customize Django's User model with custom fields?
You want to store a floating point number in a model. What built-in model field would You use to store it?
What type of logic should You store in a model?
Does Django handle migrations for You?
What is a Django management script?
When should one use serializers.SerializerMethodField(...)?
What is the purpose of Abstract classes?
When should You use Model.objects.select_related(...)?
What is the purpose of Proxy models in Django?
How would You write a Django REST Framework view that only allows for changing a single field in a model thru a REST call?
What does a normal serializer do Django REST Framework?
What is the purpose of MVC frameworks?
What database engine would You preferably use with Django?
What does the root URL file do in Django?
What is Celery in the context of Django?
Can You handle REST calls with Django out of the box?
Can You store a Django model in an ElasticSearch index?
What is the purpose of managers in Django?
How would You handle static files in Django?
How would You handle static files in Django?