django1/django/core/cache/backends
Jacob Kaplan-Moss 644e98136a Fixed #9644: fix a thread sync issue in the locmem cache. Thanks, mrts.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10333 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-01 17:05:19 +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 #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