django1/django/core/cache/backends
Michael Lissner 5a8e8f80bb Fixed #32772 -- Made database cache count size once per set. 2021-05-26 11:21:11 +02:00
..
__init__.py Refactored cache from django/core/cache.py into django/core/cache package, with each backend getting a separate module. This keeps things cleaner and uses less memory, because the backend module is only loaded if it's needed. 2006-02-24 06:07:01 +00:00
base.py Fixed #29867 -- Added support for storing None value in caches. 2020-12-17 09:57:21 +01:00
db.py Fixed #32772 -- Made database cache count size once per set. 2021-05-26 11:21:11 +02:00
dummy.py Fixed #30759 -- Made cache.delete() return whether it succeeded. 2019-11-14 11:14:11 +01:00
filebased.py Fixed CVE-2020-24584 -- Fixed permission escalation in intermediate-level directories of the file system cache on Python 3.7+. 2020-09-01 09:17:23 +02:00
locmem.py Fixed #31907 -- Fixed missing validate_key() calls in cache backends. 2020-08-24 09:41:21 +02:00
memcached.py Fixed #29867 -- Added support for storing None value in caches. 2020-12-17 09:57:21 +01:00