summaryrefslogtreecommitdiff
path: root/django/core/cache/backends/memcached.py
AgeCommit message (Expand)Author
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
2009-12-13Fixed #10646: `cache.incr()` and `decr()` now fail consistantly under python-...Jacob Kaplan-Moss
2009-03-11Fixed #6464 -- Added incr() and decr() operations on cache backends. Atomic o...Russell Keith-Magee
2008-08-19Fixed #8410 -- Added a missing piece of value encoding for the memcachedMalcolm Tredinnick
2008-08-16Fixed #5133 -- Explicitly close memcached connections after each requestMalcolm Tredinnick
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-07-16Fixed #4845 -- Fixed some problems with Unicode usage and caching. Thanks,Malcolm Tredinnick
2007-03-25Fixed #3648 -- Added support for cmemcached Python library. Thanks, floguy@gm...Adrian Holovaty
2006-08-18Fixed #2561 -- memcached cache backend no longer ignores default timeout. Tha...Adrian Holovaty
2006-02-24Refactored cache from django/core/cache.py into django/core/cache package, wi...Adrian Holovaty