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
Source:stackexchange.com