summaryrefslogtreecommitdiff
path: root/django/core/cache/backends/memcached.py
AgeCommit message (Expand)Author
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