Author: adrian Date: 2007-09-04 17:44:35 -0500 (Tue, 04 Sep 2007) New Revision: 6049
Modified: django/trunk/docs/cache.txt Log: Updated docs/cache.txt section on 'dummy caching' to use the same example format as the other backends Modified: django/trunk/docs/cache.txt =================================================================== --- django/trunk/docs/cache.txt 2007-09-04 13:09:59 UTC (rev 6048) +++ django/trunk/docs/cache.txt 2007-09-04 22:44:35 UTC (rev 6049) @@ -176,10 +176,12 @@ This is useful if you have a production site that uses heavy-duty caching in various places but a development/test environment on which you don't want to -cache. In that case, set ``CACHE_BACKEND`` to ``"dummy:///"`` in the settings -file for your development environment. As a result, your development -environment won't use caching and your production environment still will. +cache. As a result, your development environment won't use caching and your +production environment still will. To activate dummy caching, set +``CACHE_BACKEND`` like so:: + CACHE_BACKEND = 'dummy:///' + CACHE_BACKEND arguments ----------------------- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
