summaryrefslogtreecommitdiff
path: root/django/core/cache/backends/dummy.py
AgeCommit message (Expand)Author
2021-09-07Fixed #33060 -- Added BaseCache.make_and_validate_key() hook.Nick Pope
2021-09-03Refs #33060 -- Added .make_key() in .touch() for dummy cache backend.Nick Pope
2019-11-14Fixed #30759 -- Made cache.delete() return whether it succeeded.daniel a rios
2018-04-27Fixed #27480 -- Added cache.touch().Nicolas NoƩ
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
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-10-10Fixed #23625 -- Removed CacheClass shimJaap Roes
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-05-18Fixed #9595 -- Allow non-expiring cache timeouts.Jacob Burch
2011-09-10Fixed #16162. Added timeout arg to `DummyCache.set_many`, for compatiblity wi...Alex Gaynor
2010-12-21Fixed #11675 -- Added support for the PyLibMC cache library. In order to supp...Russell Keith-Magee
2010-11-19Fixed #13795 -- Added a site-wide cache prefix and cache versioning. Thanks t...Russell Keith-Magee
2010-09-12Add warning when using cache keys that might not work with memcached.Malcolm Tredinnick
2010-01-27Fixed #12671 -- Added set_many(), get_many(), and clear() methods to the cach...Russell Keith-Magee
2008-08-10Added a return value to the add() method for caches. It's now possible to tellMalcolm Tredinnick
2007-10-20Fixed #4831 -- Added an "add" cache key method, for parity with memcached'sMalcolm Tredinnick
2007-01-12Fixed #3290: DummyCache now conforms to the BaseCache interface correctly. Th...Jacob Kaplan-Moss
2006-02-24Refactored cache from django/core/cache.py into django/core/cache package, wi...Adrian Holovaty