[Answer]-How to start django session on demand?

1👍

This is actually not true. Sessions are lazily created, so only if data is put in the session a new record is created. Have a look here:

https://github.com/django/django/blob/master/django/contrib/sessions/middleware.py#L27

Leave a comment