summaryrefslogtreecommitdiff
path: root/django/core/cache
AgeCommit message (Expand)Author
2021-12-14[4.0.x] Fixed #33361 -- Fixed Redis cache backend crash on booleans.Jeremy Lainé
2021-09-14Fixed #33012 -- Added Redis cache backend.Daniyal
2021-09-07Fixed #32076 -- Added async methods to BaseCache.Andrew-Chen-Wang
2021-09-07Fixed #33060 -- Added BaseCache.make_and_validate_key() hook.Nick Pope
2021-09-07Refs #33060 -- Ensured cache backends validate keys.Nick Pope
2021-09-03Refs #33060 -- Added .make_key() in .touch() for dummy cache backend.Nick Pope
2021-08-31Refs #33061 -- Removed unnecessary BaseMemcachedCache.decr().Mariusz Felisiak
2021-08-31Fixed #33061 -- Fixed handling nonexistent keys with negative deltas in incr(...Sondre Lillebø Gundersen
2021-05-26Fixed #32772 -- Made database cache count size once per set.Michael Lissner
2021-05-18Fixed #32747 -- Prevented initialization of unused caches.Mariusz Felisiak
2021-05-12Fixed #32366 -- Updated datetime module usage to recommended approach.Nick Pope
2021-05-05Fixed #32705 -- Prevented database cache backend from checking .rowcount on c...ecogels
2020-12-17Fixed #29867 -- Added support for storing None value in caches.Nick Pope
2020-12-15Fixed typo in django/core/cache/backends/base.py docstring.Abhishek Ghaskata
2020-12-09Fixed #32193 -- Deprecated MemcachedCache.Mariusz Felisiak
2020-12-08Fixed #32233 -- Cleaned-up duplicate connection functionality.Florian Apolloner
2020-12-07Refs #21012 -- Removed unnecessary _create_cache() hook.Florian Apolloner
2020-09-16Fixed #29887 -- Added a cache backend for pymemcache.Nick Pope
2020-09-02Refs #29887, Refs #24212 -- Added servers configuration hook for memcached ba...Nick Pope
2020-09-01Refs #29887 -- Simplified memcached client instantiation.Nick Pope
2020-09-01Fixed CVE-2020-24584 -- Fixed permission escalation in intermediate-level dir...Mariusz Felisiak
2020-08-24Fixed #31907 -- Fixed missing validate_key() calls in cache backends.Nick Pope
2020-08-20Refs #29887, #27480 -- Moved touch() to BaseMemcachedCache.Nick Pope
2020-08-20Fixed comments related to nonexistent keys for incr()/decr() in memcached bac...Nick Pope
2020-06-22Fixed #31728 -- Fixed cache culling when no key is found for deletion.Guillermo Bonvehí
2020-06-05Fixed #31654 -- Fixed cache key validation messages.Mariusz Felisiak
2020-06-03Fixed CVE-2020-13254 -- Enforced cache key validation in memcached backends.Dan Palmer
2020-02-11Fixed #31253 -- Fixed data loss possibility when using caching from async code.Jon Dufresne
2019-11-14Fixed #30759 -- Made cache.delete() return whether it succeeded.daniel a rios
2019-09-18Fixed #30772 -- Optimized make_template_fragment_key().Daniel Fairhead
2019-04-24Removed unnecessary assignments in various code.Jon Dufresne
2019-02-14Fixed #30181 -- Made cache.get() with default work correctly on PyLibMCCache ...Jakub Szafrański
2019-02-08Simplified FileBasedCache.clear().Jon Dufresne
2019-01-31Fixed #30147 -- Simplified directory creation with os.makedirs(..., exist_ok=...Jon Dufresne
2019-01-17Refs #28370 -- Removed support for the context arg of Field.from_db_value() a...Tim Graham
2018-08-17Fixed #29626, #29584 -- Added optimized versions of get_many() and delete_man...oliver
2018-07-09Fixed #29550 -- Eased overriding pickle.dumps() protocol in cache backends an...Simon Charette
2018-07-09Refs #27480 -- Moved FileBasedCache content writing logic to a method.Simon Charette
2018-07-09Fixed #20584 -- Fixed memcached's get_many() with single-use iterators.Christian Barcenas
2018-05-28Added 'caches' to django.core.cache.__all__.Wang Dongxiao
2018-04-27Fixed #27480 -- Added cache.touch().Nicolas Noé
2018-03-13Quoted field names in cache db backend SQL.Hajime Nakagami
2018-02-02Refs #27795 -- Replaced force_bytes() usage in django.core.cache.Jon Dufresne
2018-01-24Fixed #28977 -- Changed local-memory cache to use LRU culling.Grant Jenks
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-07Refs #23919 -- Replaced super() calls for old-style classes.Nick Pope
2017-10-31Fixed #28760 -- Removed DummyCache's unnecessary get/set/delete_many().Adam Johnson
2017-10-30Refs #27318 -- Made DummyCache.set_many() return a list for consistency with ...Adam Johnson
2017-10-10Fixed #28601 -- Prevented cache.get_or_set() from caching None if default is ...Daniel Tao