﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
15269	get_cache method should be documented as part of move to CACHES	abdelazer@…	Ian Clelland	"While the move to CACHES is explained in docs/topics/cache.txt, it is not clear that this allows the declaration and access of multiple caches. 

An example with more than one (a non-'default') cache should be included. 

An explanation of how to use `get_cache` should be included, perhaps just a minor rewording of the docstring?

{{{
    Function to load a cache backend dynamically. This is flexible by design
    to allow different use cases:

    To load a backend with the old URI-based notation::

        cache = get_cache('locmem://')

    To load a backend that is pre-defined in the settings::

        cache = get_cache('default')

    To load a backend with its dotted import path,
    including arbitrary options::

        cache = get_cache('django.core.cache.backends.memcached.MemcachedCache', **{
            'LOCATION': '127.0.0.1:11211', 'TIMEOUT': 30,
        })
}}}
"	Bug	closed	Documentation	dev	Normal	fixed	cache	django@…	Accepted	1	0	0	0	0	0
