1
0
mirror of https://github.com/django/django.git synced 2025-07-05 10:19:20 +00:00

[1.3.X] Fixed #16334: Make it quite clear that cache_page's 'cache' argument refers to the name of a cache in the CACHES setting. Backport of [16815] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16816 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2011-09-11 05:58:34 +00:00
parent 460150975c
commit 2c8e45e1f4

View File

@ -526,9 +526,10 @@ you may expect. But once a particular URL (e.g., ``/foo/23/``) has been
requested, subsequent requests to that URL will use the cache. requested, subsequent requests to that URL will use the cache.
``cache_page`` can also take an optional keyword argument, ``cache``, ``cache_page`` can also take an optional keyword argument, ``cache``,
which directs the decorator to use a specific cache alias when caching view which directs the decorator to use a specific cache (from your
results. By default, the ``default`` alias will be used, but you can specify :setting:`CACHES` setting) when caching view results. By default, the
any cache alias you want:: ``default`` cache will be used, but you can specify any cache you
want::
@cache_page(60 * 15, cache="special_cache") @cache_page(60 * 15, cache="special_cache")
def my_view(request): def my_view(request):