فهرست منبع

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
Timo Graham 14 سال پیش
والد
کامیت
6c361ecb17
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      docs/topics/cache.txt

+ 1 - 1
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