Ticket #14781: cache-key-prefix.diff

File cache-key-prefix.diff, 1.1 KB (added by Adam Vandenberg, 13 years ago)
  • docs/ref/settings.txt

    diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
    index b551a27..975a863 100644
    a b argument signature.  
    155155
    156156See the :ref:`cache documentation <cache_key_transformation>` for more information.
    157157
     158.. setting:: CACHE_KEY_PREFIX
     159
     160CACHE_KEY_PREFIX
     161----------------
     162
     163Default: ``''`` (Empty string)
     164
     165A string that will be automatically included (prepended by default) to
     166all cache keys used by the Django server.
     167
     168See the :ref:`cache documentation <cache_key_prefixing>` for more information.
     169
    158170.. setting:: CACHE_MIDDLEWARE_ANONYMOUS_ONLY
    159171
    160172CACHE_MIDDLEWARE_ANONYMOUS_ONLY
    The default number of seconds to cache a page when the caching middleware or  
    194206
    195207See :doc:`/topics/cache`.
    196208
    197 .. setting:: CACHE_PREFIX
    198 
    199 CACHE_PREFIX
    200 ------------
    201 
    202 Default: ``''`` (Empty string)
    203 
    204 A string that will be automatically included (prepended by default) to
    205 all cache keys used by the Django server.
    206 
    207 See the :ref:`cache documentation <cache_key_prefixing>` for more information.
    208 
    209209.. setting:: CACHE_VERSION
    210210
    211211CACHE_VERSION
Back to Top