summaryrefslogtreecommitdiff
path: root/django/core/cache/backends/memcached.py
AgeCommit message (Expand)Author
2018-07-09Fixed #20584 -- Fixed memcached's get_many() with single-use iterators.Christian Barcenas
2018-04-27Fixed #27480 -- Added cache.touch().Nicolas Noé
2017-09-22Refs #20892 -- Removed support for passing pylibmc behavior settings as top-l...Tim Graham
2017-09-06Fixed #27318 -- Made cache.set_many() return the list of failed keys.Olivier Tabone
2017-09-05Used dict comprehensions in BaseMemcachedCache.get_many() and set_many() for ...Sergey Fedoseev
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-03Fixed spelling of "nonexistent".Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2016-09-02Fixed #11331 -- Stopped closing pylibmc connections after each request.Ed Morley
2016-08-31Fixed #27152 -- Supported comma delimiter in memcached LOCATION string.Ed Morley
2016-08-31Fixed #20892 -- Allowed configuring memcached client using OPTIONS.Ed Morley
2016-06-15Fixed broken links in docs and comments.Ville Skyttä
2016-01-25Fixed #26125 -- Fixed E731 flake warnings.userimack
2015-07-06Updated Memcached get_backend_timeout() comment.Karol Duleba
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-17Removed BaseMemcachedCacheMethods._get_memcache_timeout backwards compatibili...Tim Graham
2014-11-13Fixed #16358 - Made memcache backend delete old value on a failure to set.Michael Manfre
2014-06-16Fixed #22845 -- Correctly handled memcached default timeout value.Vincent-Vega
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2013-11-23Fixed #21012 -- New API to access cache backends.Curtis Maloney
2013-11-02Fixed all E261 warningscoagulant
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-10-01Fixed #21147 -- Avoided time.time precision issue with cache backends.Michael Manfre
2013-07-09Fixed #20722 -- Fixed MemcachedCache backend get_many on Python 3.Tim Graham
2013-05-18Fixed #9595 -- Allow non-expiring cache timeouts.Jacob Burch
2013-02-24Fixed #19810 -- MemcachedCache now uses pickle.HIGHEST_PROTOCOLBas Peschier
2012-12-29Removed django.core.cache.backends.memcached.CacheClass.Aymeric Augustin
2012-11-06Fixed #14315 -- Made memcached backend handle negative incr/decr valuesClaude Paroz
2012-09-07Removed many uses of bare "except:", which were either going to a) silence re...Alex Gaynor
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-15Fixed #18770 -- memcached cache backend expects byte strings as keysClaude Paroz
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-05-03Fixed #18042 -- Advanced deprecation warnings.Aymeric Augustin
2011-07-29Fixed #16533 -- Stopped the memcache cache backend from raising an exception ...Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-04-02Added missing warnings importRussell Keith-Magee
2011-04-02Advanced deprecations in core.cache.Russell Keith-Magee
2011-03-19Fixed #13686 -- Ensure that memcache handling of unicode values in add() and ...Russell Keith-Magee
2011-02-19Fixed #15324 -- Modified the connection creation code for the memcache cache ...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
2010-10-11Fixed #14436 -- Escalated 1.2 PendingDeprecationWarnings to DeprecationWarnin...Russell Keith-Magee
2010-03-10Fixed #12427 -- Started the deprecation path for cmemcache support. Thanks to...Russell Keith-Magee
2010-03-01Fixed #11012: don't needless convert cache values to unicode.Jacob Kaplan-Moss
2010-02-11Fixed #12399 -- Added handling for memcache timeouts longer than 30 days. Tha...Russell Keith-Magee
2010-01-27Fixed #12671 -- Added set_many(), get_many(), and clear() methods to the cach...Russell Keith-Magee