Tag view

#sessions

Cross-subject tag search for related interview cards.

Clear

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

Tagged with sessions

1 card

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