django1/django/core/cache/backends
Malcolm Tredinnick 0839a0046a Fixed #4041 -- Added a __contains__ method to cache backends. Thanks, Gary
Wilson and SmileyChris.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@5171 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-05-08 04:13:46 +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 #4041 -- Added a __contains__ method to cache backends. Thanks, Gary 2007-05-08 04:13:46 +00:00
db.py Fixed a bunch of spurious imports, typos, and other small errors turned up by a pass through PyFlakes. This covers about the first third of the errors. 2006-07-21 17:11:13 +00:00
dummy.py Fixed #3290: DummyCache now conforms to the BaseCache interface correctly. Thanks, Ned Batchelder. 2007-01-12 15:16:55 +00:00
filebased.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
locmem.py Fixed a bunch of spurious imports, typos, and other small errors turned up by a pass through PyFlakes. This covers about the first third of the errors. 2006-07-21 17:11:13 +00:00
memcached.py Fixed #3648 -- Added support for cmemcached Python library. Thanks, floguy@gmail.com 2007-03-25 23:29:31 +00:00
simple.py Fixed #4040 -- Changed uses of has_key() to "in". Slight performance 2007-04-26 13:30:48 +00:00