--
Ticket URL: <https://code.djangoproject.com/ticket/30654>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => invalid
* version: 2.2 => master
* type: Cleanup/optimization => New feature
Comment:
Thanks for this proposition, however `SessionStore` is
[https://docs.djangoproject.com/en/2.2/topics/http/sessions/#extending-
database-backed-session-engines extendable] so you can easily change
`cache_key_prefix`, e.g.
{{{
class CustomSessionStore(SessionStore):
cache_key_prefix = 'my_custom_prefix'
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/30654#comment:1>