django1/django/core/cache/backends
Gary Wilson Jr c85c8f8891 Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashlib module when available. Patch from Karen Tracey.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8193 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-02 05:56:57 +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 #7967 -- Make sure the __contains__ method in the cache backends call the 2008-07-26 03:58:31 +00:00
db.py Fixed a bug in the db cache backend introduced in [6572]. 2007-10-21 19:19:32 +00:00
dummy.py Fixed #4831 -- Added an "add" cache key method, for parity with memcached's 2007-10-20 15:16:34 +00:00
filebased.py Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashlib module when available. Patch from Karen Tracey. 2008-08-02 05:56:57 +00:00
locmem.py Fixed #6413 -- Fixed a deadlock situation in the locmem culling implementation. 2008-07-26 05:27:59 +00:00
memcached.py Fixed #4831 -- Added an "add" cache key method, for parity with memcached's 2007-10-20 15:16:34 +00:00