summaryrefslogtreecommitdiff
path: root/django/contrib/sessions/backends/cache.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-8/+12
* Fixed #28167 -- Fixed cache backend's SessionStore.exists() if session_key is...Tim Graham2017-05-031-1/+1
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-1/+0
* Refs #21608 -- Fixed incorrect cache key in cache session backend's save().Jon Dufresne2016-04-041-1/+1
* Fixed #21608 -- Prevented logged out sessions being resurrected by concurrent...Tore Lundqvist2016-02-261-2/+6
* Fixed #22634 -- Made the database-backed session backends more extensible.Sergey Kolosov2015-08-271-3/+5
* Fixed #19324 -- Avoided creating a session record when loading the session.Carl Meyer2015-07-081-2/+4
* Removed unnecessary arguments in .get method callsPiotr Jakimiak2015-05-131-1/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #23812 -- Changed django.utils.six.moves.xrange imports to rangeMichael Hall2014-12-131-2/+2
* Fixed #21012 -- New API to access cache backends.Curtis Maloney2013-11-231-2/+2
* Fixed #17083 -- Allowed sessions to use non-default cache.Aymeric Augustin2012-10-311-2/+3
* Fixed #14093 -- Improved error message in the cache session backend.Aymeric Augustin2012-10-281-1/+3
* Fixed #18194 -- Expiration of file-based sessionsAymeric Augustin2012-10-281-0/+4
* [py3] Added Python 3 compatibility for xrange.Aymeric Augustin2012-07-221-0/+1
* Fixed #17810 (again). Catch session key errors.Aymeric Augustin2012-03-231-4/+3
* Fixed an incompatibility with Python 2.5 in the changes done in r17795. Refs ...Jannis Leidel2012-03-231-1/+2
* Fixed #17810. Catch session key errors.Paul McMillan2012-03-231-1/+7
* Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...Aymeric Augustin2011-11-271-7/+11
* Corrected an issue which could allow attackers to manipulate session data usi...Russell Keith-Magee2011-09-101-4/+6
* Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...Jannis Leidel2011-09-091-3/+1
* Fixed #9548 -- Correctly detect existence of empty sessions with cache backend.Malcolm Tredinnick2009-03-011-1/+1
* Fixed #8311 -- Avoid an infinite loop with session key generation when usingMalcolm Tredinnick2008-08-271-1/+7
* Fixed #8351 -- Fixed the returned value when we attempt to load a cache-backe...Malcolm Tredinnick2008-08-161-0/+1
* Made a few small tweaks to reduce persistent storage accesses in the sessionMalcolm Tredinnick2008-08-151-0/+2
* Fixed #8314 -- Fixed an infinite loop caused when submitting a session key (viaMalcolm Tredinnick2008-08-141-1/+2
* Implemented a flush() method on sessions that cleans out the session andMalcolm Tredinnick2008-08-141-1/+3
* Added guaranteed atomic creation of new session objects. Slightly backwardsMalcolm Tredinnick2008-08-141-4/+23
* Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...Adrian Holovaty2008-07-221-2/+0
* Several Django styling fixes in the `contrib.sessions` app.Gary Wilson Jr2008-06-231-1/+2
* Fixed #2548: added get/set_expiry methods to session objects. Thanks, Amit Up...Jacob Kaplan-Moss2008-06-071-4/+4
* Fixed #2066: session data can now be stored in the cache or on the filesystem...Jacob Kaplan-Moss2007-09-151-0/+26