Subject revision

Django

Django theory and practical interview prompts.

Clear

Results update as you type. Press / to jump straight into search.

Django cards

25 cards

Django Easy Theory

Advantages of the Django ORM

The ORM improves productivity with composable queries, model validation, and database abstraction.

  • Readable query API
  • Built-in escaping reduces SQL injection risk
  • Easy relation traversal

Advantages of the Django ORM

Django Medium Theory

select_related vs prefetch_related

select_related joins single-valued relations in SQL; prefetch_related fetches related collections in extra queries.

  • select_related for FK and O2O
  • prefetch_related for M2M and reverse FK
  • Both reduce N+1 queries

select_related vs prefetch_related

Django Easy Theory

Session vs cookie in Django

Cookies live in the browser, while sessions usually store server-side state and use a cookie only for the session key.

  • Cookie stores small client data
  • Session stores server data
  • Secure cookies still live client-side

Session vs cookie in Django