django1/django/core/cache/backends
Malcolm Tredinnick 8f28a84a98 The database cache wasn't correctly handling expired keys. Fixed now.
The cache tests have been failing for a long time with the db backend. This
change makes them pass again, so no test changes required here.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9942 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-02 03:15:27 +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 Added a return value to the add() method for caches. It's now possible to tell 2008-08-10 03:52:21 +00:00
db.py The database cache wasn't correctly handling expired keys. Fixed now. 2009-03-02 03:15:27 +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 Added a return value to the add() method for caches. It's now possible to tell 2008-08-10 03:52:21 +00:00
memcached.py Fixed #8410 -- Added a missing piece of value encoding for the memcached 2008-08-19 20:35:56 +00:00