From 6c361ecb179cb0bfa76614e0292188c548801606 Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sat, 15 Jan 2011 18:52:59 +0000 Subject: [PATCH] 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 --- docs/topics/cache.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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