summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-01-15 18:52:59 +0000
committerTimo Graham <timograham@gmail.com>2011-01-15 18:52:59 +0000
commit6c361ecb179cb0bfa76614e0292188c548801606 (patch)
treee0e7be17c29de904159db7bb405c0e89370105c2 /docs
parent8b4e39bc2eb35d28e602e9f59f5acdd84784e134 (diff)
Fixed #15085 - Fix LOCATION for FileCache example. Thanks abdelazer for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/cache.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index dc8da9bdbb..b1273041c9 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -400,7 +400,7 @@ of 60 seconds, and a maximum capacity of 1000 items::
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.filebased.FileCache',
- 'LOCATION': '127.0.0.1:11211',
+ 'LOCATION': '/var/tmp/django_cache',
'TIMEOUT': 60,
'OPTIONS': {
'MAX_ENTRIES': 1000