summaryrefslogtreecommitdiff
path: root/django/core/cache/__init__.py
AgeCommit message (Expand)Author
2025-07-23Removed double spaces after periods and within phrases.Sarah Boyce
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
2022-05-12Made closing in connection handlers more DRY.Nick Pope
2022-03-17Prevented initialization of unused database connections.Florian Apolloner
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-05-18Fixed #32747 -- Prevented initialization of unused caches.Mariusz Felisiak
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-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
2018-05-28Added 'caches' to django.core.cache.__all__.Wang Dongxiao
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
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 obsolete __ne__() methods.Aymeric Augustin
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2015-09-18Fixed #25034 -- Converted caches ImproperlyConfigured error to a system check.Tom Christie
2015-06-27Sorted imports in __init__.py files.Tim Graham
2015-01-17Removed django.core.cache.get_cache() per deprecation timeline; refs #21012.Tim Graham
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag
2013-11-24flake8 fixesAlex Gaynor
2013-11-24Properly closed cache connections at the end of the request.Florian Apolloner
2013-11-23A handful of flake8 fixesAlex Gaynor
2013-11-23Fixed #21012 -- New API to access cache backends.Curtis Maloney
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-09-19Fixed #21125 -- Removed support for cache URI syntaxCurtis Maloney
2013-09-06Fixed a number of flake8 errors -- particularly around unused imports and loc...Alex Gaynor
2013-09-05Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-07-29Deprecated django.utils.importlibClaude Paroz
2013-02-04Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz
2012-11-11Merge pull request #218 from mgrouchy/ticket_18582Aymeric Augustin
2012-11-10Removed an impossible code path in cache functionClaude Paroz
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-18BaseCache now has a no-op close method as per ticket #18582Mike Grouchy
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Fixed #18220 -- Removed the CACHE_BACKEND setting, as per official deprecatio...Claude Paroz
2012-03-31Fixed #18029 -- Removed mod_python as of deprecation process. Thanks Aymeric ...Claude Paroz
2012-03-31Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for ...Claude Paroz
2012-02-09Fixed #17286 -- Made sure all cache backends are set up to connect to the sig...Jannis Leidel
2011-07-05Fixed #16410 -- Fixed get_cache to behave gracefully when given a string that...Jannis Leidel
2011-06-09Fixed #16155 -- Removed Python 2.4 compatibility constructs from code and men...Ramiro Morales
2011-04-02Advanced deprecations in core.cache.Russell Keith-Magee
2011-02-10Fixed #15264 -- Ensured that legacy cache backends specified using the legacy...Russell Keith-Magee
2011-02-04Fixed #15217 -- Made the CACHE_BACKEND deprecation warning more selective, so...Russell Keith-Magee
2011-01-24Fixed #15144 -- Corrected some problems with the Cache middleware when used w...Russell Keith-Magee
2011-01-15Fixed #15079 -- Added a missing import in the cache infrastructure. Thanks to...Russell Keith-Magee
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