django1/django/core/cache/backends
Malcolm Tredinnick 2d2396a384 Fixed #5133 -- Explicitly close memcached connections after each request
(similar to database connection management). We can't effectively manage the
lifecycle by pooling connections and recent versions of python-memcache can
lead to connection exhaustion in some quite reasonable setups.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8418 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-16 23:35:58 +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 Added a return value to the add() method for caches. It's now possible to tell 2008-08-10 03:52:21 +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 #5133 -- Explicitly close memcached connections after each request 2008-08-16 23:35:58 +00:00