summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-12-02 04:54:34 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-12-02 04:54:34 +0000
commit0c1ba467aebce501ac7ff6d91e7ccd5bfeb36e8e (patch)
treeb9c922a4b0ea420f76179476f0a1295d93f00584 /docs
parentc882d7c99c94a7806eceb032b79b67a82e590f21 (diff)
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
Diffstat (limited to 'docs')
-rw-r--r--docs/cache.txt4
1 files changed, 4 insertions, 0 deletions
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)
-------------------------------