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:
parent
ccbea84834
commit
6d92319838
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue