From 0c1ba467aebce501ac7ff6d91e7ccd5bfeb36e8e Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 2 Dec 2007 04:54:34 +0000 Subject: [PATCH] Documented that the simple cache backend was deprecated in [6822]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6827 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/cache.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/cache.txt b/docs/cache.txt index af6cb35c42..e7e1cdd791 100644 --- a/docs/cache.txt +++ b/docs/cache.txt @@ -168,6 +168,10 @@ development or testing environments. For example:: CACHE_BACKEND = 'simple:///' +**New in Django development version:** This cache backend is deprecated and +will be removed in a future release. New code should use the ``locmem`` backend +instead. + Dummy caching (for development) -------------------------------