summaryrefslogtreecommitdiff
path: root/django/core/cache/backends
AgeCommit message (Expand)Author
2011-11-27Clean up the the locmem cache backend and utils.synch by using context manage...Alex Gaynor
2011-11-26Fixed #17287 -- Prevented LocMemCache.incr/decr from changing key expiry time...Carl Meyer
2011-11-21Fixed #16378. Locmem now uses pickle.HIGHEST_PROTOCOL for better compatibilit...Paul McMillan
2011-11-20Made the database cache backend, which bypasses the ORM, compatible with time...Aymeric Augustin
2011-09-10Fixed #16162. Added timeout arg to `DummyCache.set_many`, for compatiblity wi...Alex Gaynor
2011-09-09Fixed a bunch of imports of the email stdlib module now that we are on Python...Jannis Leidel
2011-08-21Fixed #16481 -- Adapted one raw SQL query in cull immplementation of the data...Ramiro Morales
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-28Removed a bunch of Python 2.4 workarounds now that we don't support it. Refs ...Adrian Holovaty
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-11-02Fixed #14596 -- Light refactoring of the cache backends.Russell Keith-Magee
2010-10-11Fixed #14436 -- Escalated 1.2 PendingDeprecationWarnings to DeprecationWarnin...Russell Keith-Magee
2010-09-12Add warning when using cache keys that might not work with memcached.Malcolm Tredinnick
2010-09-10Fixed #14250 - FileBasedCacheTests.test_cull test failureLuke Plant
2010-08-31Fixed #14199 -- Added a missing table creation statement in the db cache back...Russell Keith-Magee
2010-08-05Fixed #13946 -- Modified the database cache backend to use the database route...Russell Keith-Magee
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-04-16Fixed #13357 -- Minor changes to get Django running under PyPy. Thanks to Ale...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 #11483 -- Modified db cache backend to use db backend functions for dat...Russell Keith-Magee
2010-02-11Fixed #11623 -- Corrected table name quoting in db cache backend. Thanks to F...Russell Keith-Magee
2010-02-11Fixed #12189 -- Corrected rollback behavior in database cache backend. Thanks...Russell Keith-Magee
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
2010-01-10Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty
2009-12-13Fixed #10646: `cache.incr()` and `decr()` now fail consistantly under python-...Jacob Kaplan-Moss
2009-04-01Fixed #9644: fix a thread sync issue in the locmem cache. Thanks, mrts.Jacob Kaplan-Moss
2009-03-13Fixed #10488: fixed DB cache backend test failures in Oracle.Ian Kelly
2009-03-11Fixed #6464 -- Added incr() and decr() operations on cache backends. Atomic o...Russell Keith-Magee
2009-03-08Fixed #9626 -- Fixed a deletion race in the locmem cache.Malcolm Tredinnick
2009-03-02The database cache wasn't correctly handling expired keys. Fixed now.Malcolm Tredinnick
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
2008-08-02Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...Gary Wilson Jr
2008-07-26Fixed #6413 -- Fixed a deadlock situation in the locmem culling implementation.Malcolm Tredinnick
2008-07-26Fixed #7967 -- Make sure the __contains__ method in the cache backends call theMalcolm Tredinnick
2007-12-11Fixe #6131 -- Fixed a problem with expired keys in the locmem cache. Based on...Malcolm Tredinnick
2007-12-04Fixed #6099: the filebased cache backend now uses md5 hashes of keys instead ...Jacob Kaplan-Moss
2007-12-02Fixed #6086 -- Deprecate the "simple" cache backend in favour of "locmem".Malcolm Tredinnick
2007-11-30Edited docs and docstring changes from [6572] (new cache add() method)Adrian Holovaty
2007-11-21Fixed #5981 -- Fixed failing regression test when using locmem cache backend....Gary Wilson Jr
2007-10-21Fixed a bug in the db cache backend introduced in [6572].Malcolm Tredinnick