summaryrefslogtreecommitdiff
path: root/django/core/cache/backends/base.py
AgeCommit message (Expand)Author
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2025-07-23Removed double spaces after periods and within phrases.Sarah Boyce
2025-03-01Applied Black's 2025 stable style.Mariusz Felisiak
2023-06-28Fixed #34681 -- Optimized memcache_key_warnings().Adam Johnson
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
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
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-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
2019-11-14Fixed #30759 -- Made cache.delete() return whether it succeeded.daniel a rios
2019-04-24Removed unnecessary assignments in various code.Jon Dufresne
2018-04-27Fixed #27480 -- Added cache.touch().Nicolas Noé
2017-10-10Fixed #28601 -- Prevented cache.get_or_set() from caching None if default is ...Daniel Tao
2017-09-06Fixed #27318 -- Made cache.set_many() return the list of failed keys.Olivier Tabone
2017-07-14Fixed #28397 -- Removed django.core.exceptions.DjangoRuntimeWarning.Tim Graham
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-07-11Fixed #26792 -- Allowed None for the value of cache.get_or_set().Dmitry S..ky / skype: dvska-at-skype
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-05Fixed #26462 -- Fixed Python 2 UnicodeEncodeError when warning about long cac...Przemysław Suliga
2016-04-04Fixed #26460 -- Issued a single warning for invalid cache keyPrzemysław Suliga
2016-03-08Fixed #26332 -- Fixed a race condition in BaseCache.get_or_set().Przemysław Suliga
2015-12-29Fixed typo in BaseCache.delete_many() docstring.Matthew Madurski
2015-12-04Fixed #25840 -- Fixed BaseCache.get_or_set() on the DummyCache backend.Emre Yilmaz
2015-11-03Fixed #25668 -- Misc spelling errorsVille Skyttä
2015-09-16Fixed typo in django/core/cache/backends/base.py docstring.Matthew Crowson
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
2015-03-14Fixed #12982 -- Added a get_or_set() method to the BaseCache backend.Berker Peksag
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-03-04Fixed #22085 -- Added a feature for setting non-expiring keys as the default.zedr
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-10-01Fixed #21147 -- Avoided time.time precision issue with cache backends.Michael Manfre
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-05-18Fixed #9595 -- Allow non-expiring cache timeouts.Jacob Burch
2013-02-04Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz
2012-11-11Tweaked cache key creation to avoid strict typing.Aymeric Augustin
2012-11-11Merge pull request #218 from mgrouchy/ticket_18582Aymeric Augustin
2012-08-13[py3] Fixed encoding issues in cache key generationClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-18BaseCache now has a no-op close method as per ticket #18582Mike Grouchy
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
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-11-02Fixed #14596 -- Light refactoring of the cache backends.Russell Keith-Magee
2010-09-12Add warning when using cache keys that might not work with memcached.Malcolm Tredinnick