Session engine is default
--
Ticket URL: <https://code.djangoproject.com/ticket/25757>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* needs_better_patch: => 0
* needs_tests: => 0
* needs_docs: => 0
Comment:
Hi, I'm having trouble understanding your report. Please provide the exact
steps to reproduce the issue.
--
Ticket URL: <https://code.djangoproject.com/ticket/25757#comment:1>
Comment (by hale01):
Sorry, i badly speak English
For anonymouse user don`t create sessionid
I think a problem somewhere here
https://github.com/django/django/commit/8cc41ce7a7a8f6bebfdd89d5ab276cd0109f4fc5
{{{#!python
if (modified or settings.SESSION_SAVE_EVERY_REQUEST) and not empty:
}}}
temporary solution for me
{{{#!python
if (modified or settings.SESSION_SAVE_EVERY_REQUEST):
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/25757#comment:2>
* status: new => closed
* resolution: => duplicate
Comment:
This behavior is intentional, see #25489 for discussion.
--
Ticket URL: <https://code.djangoproject.com/ticket/25757#comment:3>