django1/django/core/cache/backends
Jacob Kaplan-Moss 07ba0dbaf7 Fixed #10646: `cache.incr()` and `decr()` now fail consistantly under python-memcache and cmemcache.
Though it looks like this commit has no tests that's not so: this is tested for in `regressiontests/cache/tests.py` around like 183; these tests currently fail if ran against cmemcache.

Thanks, andrewfong.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11855 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-13 20:35:06 +00:00
..
__init__.py Refactored cache from django/core/cache.py into django/core/cache package, with each backend getting a separate module. This keeps things cleaner and uses less memory, because the backend module is only loaded if it's needed. 2006-02-24 06:07:01 +00:00
base.py Fixed #6464 -- Added incr() and decr() operations on cache backends. Atomic on Memcache; implemented as a 2 stage retrieve/update on other backends. Includes refactor of the cache tests to ensure all the backends are actually tested, and a fix to the DB cache backend that was discovered as a result. Thanks to Michael Malone for the original patch. 2009-03-11 13:27:03 +00:00
db.py Fixed #10488: fixed DB cache backend test failures in Oracle. 2009-03-13 21:04:48 +00:00
dummy.py Added a return value to the add() method for caches. It's now possible to tell 2008-08-10 03:52:21 +00:00
filebased.py Added a return value to the add() method for caches. It's now possible to tell 2008-08-10 03:52:21 +00:00
locmem.py Fixed #9644: fix a thread sync issue in the locmem cache. Thanks, mrts. 2009-04-01 17:05:19 +00:00
memcached.py Fixed #10646: `cache.incr()` and `decr()` now fail consistantly under python-memcache and cmemcache. 2009-12-13 20:35:06 +00:00