django1/django/core/cache/backends
Aymeric Augustin 212a512984 [py3] Avoided the deprecated base64 interface.
This fixes a deprecation warning under Python 3.
2012-08-14 23:45:12 +02: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 [py3] Fixed encoding issues in cache key generation 2012-08-13 12:56:59 +02:00
db.py [py3] Avoided the deprecated base64 interface. 2012-08-14 23:45:12 +02:00
dummy.py Fixed #16162. Added timeout arg to `DummyCache.set_many`, for compatiblity with other caches. Thanks to aaugustin for the patch. 2011-09-10 17:09:23 +00:00
filebased.py [py3] Encoded value before feeding it to hashlib.md5 2012-08-12 22:49:10 +02:00
locmem.py [py3] Switched to Python 3-compatible imports. 2012-07-22 09:29:56 +02:00
memcached.py [py3] Replaced basestring by six.string_types. 2012-07-22 09:29:54 +02:00