Added note to docs/cache.txt saying CacheMiddleware needs to be first entry in MIDDLEWARE_CLASSES

git-svn-id: http://code.djangoproject.com/svn/django/trunk@616 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-02 21:22:49 +00:00
parent ccbea84834
commit 6d92319838
1 changed files with 4 additions and 1 deletions

View File

@ -70,10 +70,13 @@ cache your entire site. Just add ``django.middleware.cache.CacheMiddleware``
to your ``MIDDLEWARE_CLASSES`` setting, as in this example:: to your ``MIDDLEWARE_CLASSES`` setting, as in this example::
MIDDLEWARE_CLASSES = ( MIDDLEWARE_CLASSES = (
"django.middleware.common.CommonMiddleware",
"django.middleware.cache.CacheMiddleware", "django.middleware.cache.CacheMiddleware",
"django.middleware.common.CommonMiddleware",
) )
Make sure it's the first entry in ``MIDDLEWARE_CLASSES``. (The order of
``MIDDLEWARE_CLASSES`` matters.)
Then, add the following three required settings: Then, add the following three required settings:
* ``CACHE_MIDDLEWARE_SECONDS`` -- The number of seconds each page should be * ``CACHE_MIDDLEWARE_SECONDS`` -- The number of seconds each page should be