summaryrefslogtreecommitdiff
path: root/docs/cache.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-09-05 20:01:24 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-09-05 20:01:24 +0000
commit976acdc7743180993dc8257f5d256206857e8160 (patch)
treede6c056010fac0e747043b34dcfdb5f4b7510d6d /docs/cache.txt
parentbd01c6ee5703f8efec06f65374c7961458de6ea6 (diff)
newforms-admin: Merged to [6050]
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@6051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/cache.txt')
-rw-r--r--docs/cache.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/cache.txt b/docs/cache.txt
index d13352b025..92b5c1b43d 100644
--- a/docs/cache.txt
+++ b/docs/cache.txt
@@ -176,9 +176,11 @@ just implements the cache interface without doing anything.
This is useful if you have a production site that uses heavy-duty caching in
various places but a development/test environment on which you don't want to
-cache. In that case, set ``CACHE_BACKEND`` to ``"dummy:///"`` in the settings
-file for your development environment. As a result, your development
-environment won't use caching and your production environment still will.
+cache. As a result, your development environment won't use caching and your
+production environment still will. To activate dummy caching, set
+``CACHE_BACKEND`` like so::
+
+ CACHE_BACKEND = 'dummy:///'
CACHE_BACKEND arguments
-----------------------