Author: adrian
Date: 2006-08-17 22:33:37 -0500 (Thu, 17 Aug 2006)
New Revision: 3604

Modified:
   django/trunk/docs/cache.txt
Log:
Added note to docs/cache.txt about CACHE_MIDDLEWARE_ANONYMOUS_ONLY=True and 
ordering AuthenticationMiddleware. Refs #2541.

Modified: django/trunk/docs/cache.txt
===================================================================
--- django/trunk/docs/cache.txt 2006-08-18 03:31:13 UTC (rev 3603)
+++ django/trunk/docs/cache.txt 2006-08-18 03:33:37 UTC (rev 3604)
@@ -233,7 +233,10 @@
 parameters. Optionally, if the ``CACHE_MIDDLEWARE_ANONYMOUS_ONLY`` setting is
 ``True``, only anonymous requests (i.e., not those made by a logged-in user)
 will be cached. This is a simple and effective way of disabling caching for any
-user-specific pages (include Django's admin interface).
+user-specific pages (include Django's admin interface). Note that if you use
+``CACHE_MIDDLEWARE_ANONYMOUS_ONLY``, you should make sure you've activated
+``AuthenticationMiddleware`` and that ``AuthenticationMiddleware`` appears
+before ``CacheMiddleware`` in your ``MIDDLEWARE_CLASSES``.
 
 Additionally, ``CacheMiddleware`` automatically sets a few headers in each
 ``HttpResponse``:


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates
-~----------~----~----~----~------~----~------~--~---

Reply via email to