cache.txt 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246
  1. ========================
  2. Django's cache framework
  3. ========================
  4. A fundamental trade-off in dynamic Web sites is, well, they're dynamic. Each
  5. time a user requests a page, the Web server makes all sorts of calculations --
  6. from database queries to template rendering to business logic -- to create the
  7. page that your site's visitor sees. This is a lot more expensive, from a
  8. processing-overhead perspective, than your standard
  9. read-a-file-off-the-filesystem server arrangement.
  10. For most Web applications, this overhead isn't a big deal. Most Web
  11. applications aren't ``washingtonpost.com`` or ``slashdot.org``; they're simply
  12. small- to medium-sized sites with so-so traffic. But for medium- to
  13. high-traffic sites, it's essential to cut as much overhead as possible.
  14. That's where caching comes in.
  15. To cache something is to save the result of an expensive calculation so that
  16. you don't have to perform the calculation next time. Here's some pseudocode
  17. explaining how this would work for a dynamically generated Web page::
  18. given a URL, try finding that page in the cache
  19. if the page is in the cache:
  20. return the cached page
  21. else:
  22. generate the page
  23. save the generated page in the cache (for next time)
  24. return the generated page
  25. Django comes with a robust cache system that lets you save dynamic pages so
  26. they don't have to be calculated for each request. For convenience, Django
  27. offers different levels of cache granularity: You can cache the output of
  28. specific views, you can cache only the pieces that are difficult to produce,
  29. or you can cache your entire site.
  30. Django also works well with "downstream" caches, such as `Squid
  31. <http://www.squid-cache.org>`_ and browser-based caches. These are the types of
  32. caches that you don't directly control but to which you can provide hints (via
  33. HTTP headers) about which parts of your site should be cached, and how.
  34. .. seealso::
  35. The :ref:`Cache Framework design philosophy <cache-design-philosophy>`
  36. explains a few of the design decisions of the framework.
  37. .. _setting-up-the-cache:
  38. Setting up the cache
  39. ====================
  40. The cache system requires a small amount of setup. Namely, you have to tell it
  41. where your cached data should live -- whether in a database, on the filesystem
  42. or directly in memory. This is an important decision that affects your cache's
  43. performance; yes, some cache types are faster than others.
  44. Your cache preference goes in the :setting:`CACHES` setting in your
  45. settings file. Here's an explanation of all available values for
  46. :setting:`CACHES`.
  47. .. _memcached:
  48. Memcached
  49. ---------
  50. The fastest, most efficient type of cache supported natively by Django,
  51. Memcached__ is an entirely memory-based cache server, originally developed
  52. to handle high loads at LiveJournal.com and subsequently open-sourced by
  53. Danga Interactive. It is used by sites such as Facebook and Wikipedia to
  54. reduce database access and dramatically increase site performance.
  55. __ http://memcached.org/
  56. Memcached runs as a daemon and is allotted a specified amount of RAM. All it
  57. does is provide a fast interface for adding, retrieving and deleting data in
  58. the cache. All data is stored directly in memory, so there's no overhead of
  59. database or filesystem usage.
  60. After installing Memcached itself, you'll need to install a Memcached
  61. binding. There are several Python Memcached bindings available; the
  62. two most common are `python-memcached`_ and `pylibmc`_.
  63. .. _`python-memcached`: ftp://ftp.tummy.com/pub/python-memcached/
  64. .. _`pylibmc`: http://sendapatch.se/projects/pylibmc/
  65. To use Memcached with Django:
  66. * Set :setting:`BACKEND <CACHES-BACKEND>` to
  67. ``django.core.cache.backends.memcached.MemcachedCache`` or
  68. ``django.core.cache.backends.memcached.PyLibMCCache`` (depending
  69. on your chosen memcached binding)
  70. * Set :setting:`LOCATION <CACHES-LOCATION>` to ``ip:port`` values,
  71. where ``ip`` is the IP address of the Memcached daemon and ``port`` is the
  72. port on which Memcached is running, or to a ``unix:path`` value, where
  73. ``path`` is the path to a Memcached Unix socket file.
  74. In this example, Memcached is running on localhost (127.0.0.1) port 11211, using
  75. the ``python-memcached`` binding::
  76. CACHES = {
  77. 'default': {
  78. 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
  79. 'LOCATION': '127.0.0.1:11211',
  80. }
  81. }
  82. In this example, Memcached is available through a local Unix socket file
  83. :file:`/tmp/memcached.sock` using the ``python-memcached`` binding::
  84. CACHES = {
  85. 'default': {
  86. 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
  87. 'LOCATION': 'unix:/tmp/memcached.sock',
  88. }
  89. }
  90. One excellent feature of Memcached is its ability to share a cache over
  91. multiple servers. This means you can run Memcached daemons on multiple
  92. machines, and the program will treat the group of machines as a *single*
  93. cache, without the need to duplicate cache values on each machine. To take
  94. advantage of this feature, include all server addresses in
  95. :setting:`LOCATION <CACHES-LOCATION>`, either separated by semicolons or as
  96. a list.
  97. In this example, the cache is shared over Memcached instances running on IP
  98. address 172.19.26.240 and 172.19.26.242, both on port 11211::
  99. CACHES = {
  100. 'default': {
  101. 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
  102. 'LOCATION': [
  103. '172.19.26.240:11211',
  104. '172.19.26.242:11211',
  105. ]
  106. }
  107. }
  108. In the following example, the cache is shared over Memcached instances running
  109. on the IP addresses 172.19.26.240 (port 11211), 172.19.26.242 (port 11212), and
  110. 172.19.26.244 (port 11213)::
  111. CACHES = {
  112. 'default': {
  113. 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
  114. 'LOCATION': [
  115. '172.19.26.240:11211',
  116. '172.19.26.242:11212',
  117. '172.19.26.244:11213',
  118. ]
  119. }
  120. }
  121. A final point about Memcached is that memory-based caching has a
  122. disadvantage: because the cached data is stored in memory, the data will be
  123. lost if your server crashes. Clearly, memory isn't intended for permanent data
  124. storage, so don't rely on memory-based caching as your only data storage.
  125. Without a doubt, *none* of the Django caching backends should be used for
  126. permanent storage -- they're all intended to be solutions for caching, not
  127. storage -- but we point this out here because memory-based caching is
  128. particularly temporary.
  129. .. _database-caching:
  130. Database caching
  131. ----------------
  132. Django can store its cached data in your database. This works best if you've
  133. got a fast, well-indexed database server.
  134. To use a database table as your cache backend:
  135. * Set :setting:`BACKEND <CACHES-BACKEND>` to
  136. ``django.core.cache.backends.db.DatabaseCache``
  137. * Set :setting:`LOCATION <CACHES-LOCATION>` to ``tablename``, the name of the
  138. database table. This name can be whatever you want, as long as it's a valid
  139. table name that's not already being used in your database.
  140. In this example, the cache table's name is ``my_cache_table``::
  141. CACHES = {
  142. 'default': {
  143. 'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
  144. 'LOCATION': 'my_cache_table',
  145. }
  146. }
  147. Creating the cache table
  148. ~~~~~~~~~~~~~~~~~~~~~~~~
  149. Before using the database cache, you must create the cache table with this
  150. command::
  151. python manage.py createcachetable
  152. This creates a table in your database that is in the proper format that
  153. Django's database-cache system expects. The name of the table is taken from
  154. :setting:`LOCATION <CACHES-LOCATION>`.
  155. If you are using multiple database caches, :djadmin:`createcachetable` creates
  156. one table for each cache.
  157. If you are using multiple databases, :djadmin:`createcachetable` observes the
  158. ``allow_migrate()`` method of your database routers (see below).
  159. Like :djadmin:`migrate`, :djadmin:`createcachetable` won't touch an existing
  160. table. It will only create missing tables.
  161. To print the SQL that would be run, rather than run it, use the
  162. :djadminopt:`--dry-run` option.
  163. Multiple databases
  164. ~~~~~~~~~~~~~~~~~~
  165. If you use database caching with multiple databases, you'll also need
  166. to set up routing instructions for your database cache table. For the
  167. purposes of routing, the database cache table appears as a model named
  168. ``CacheEntry``, in an application named ``django_cache``. This model
  169. won't appear in the models cache, but the model details can be used
  170. for routing purposes.
  171. For example, the following router would direct all cache read
  172. operations to ``cache_replica``, and all write operations to
  173. ``cache_primary``. The cache table will only be synchronized onto
  174. ``cache_primary``::
  175. class CacheRouter(object):
  176. """A router to control all database cache operations"""
  177. def db_for_read(self, model, **hints):
  178. "All cache read operations go to the replica"
  179. if model._meta.app_label == 'django_cache':
  180. return 'cache_replica'
  181. return None
  182. def db_for_write(self, model, **hints):
  183. "All cache write operations go to primary"
  184. if model._meta.app_label == 'django_cache':
  185. return 'cache_primary'
  186. return None
  187. def allow_migrate(self, db, app_label, model_name=None, **hints):
  188. "Only install the cache model on primary"
  189. if app_label == 'django_cache':
  190. return db == 'cache_primary'
  191. return None
  192. If you don't specify routing directions for the database cache model,
  193. the cache backend will use the ``default`` database.
  194. Of course, if you don't use the database cache backend, you don't need
  195. to worry about providing routing instructions for the database cache
  196. model.
  197. Filesystem caching
  198. ------------------
  199. The file-based backend serializes and stores each cache value as a separate
  200. file. To use this backend set :setting:`BACKEND <CACHES-BACKEND>` to
  201. ``"django.core.cache.backends.filebased.FileBasedCache"`` and
  202. :setting:`LOCATION <CACHES-LOCATION>` to a suitable directory. For example,
  203. to store cached data in ``/var/tmp/django_cache``, use this setting::
  204. CACHES = {
  205. 'default': {
  206. 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
  207. 'LOCATION': '/var/tmp/django_cache',
  208. }
  209. }
  210. If you're on Windows, put the drive letter at the beginning of the path,
  211. like this::
  212. CACHES = {
  213. 'default': {
  214. 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
  215. 'LOCATION': 'c:/foo/bar',
  216. }
  217. }
  218. The directory path should be absolute -- that is, it should start at the root
  219. of your filesystem. It doesn't matter whether you put a slash at the end of the
  220. setting.
  221. Make sure the directory pointed-to by this setting exists and is readable and
  222. writable by the system user under which your Web server runs. Continuing the
  223. above example, if your server runs as the user ``apache``, make sure the
  224. directory ``/var/tmp/django_cache`` exists and is readable and writable by the
  225. user ``apache``.
  226. Local-memory caching
  227. --------------------
  228. This is the default cache if another is not specified in your settings file. If
  229. you want the speed advantages of in-memory caching but don't have the capability
  230. of running Memcached, consider the local-memory cache backend. This cache is
  231. per-process (see below) and thread-safe. To use it, set :setting:`BACKEND
  232. <CACHES-BACKEND>` to ``"django.core.cache.backends.locmem.LocMemCache"``. For
  233. example::
  234. CACHES = {
  235. 'default': {
  236. 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
  237. 'LOCATION': 'unique-snowflake'
  238. }
  239. }
  240. The cache :setting:`LOCATION <CACHES-LOCATION>` is used to identify individual
  241. memory stores. If you only have one ``locmem`` cache, you can omit the
  242. :setting:`LOCATION <CACHES-LOCATION>`; however, if you have more than one local
  243. memory cache, you will need to assign a name to at least one of them in
  244. order to keep them separate.
  245. Note that each process will have its own private cache instance, which means no
  246. cross-process caching is possible. This obviously also means the local memory
  247. cache isn't particularly memory-efficient, so it's probably not a good choice
  248. for production environments. It's nice for development.
  249. Dummy caching (for development)
  250. -------------------------------
  251. Finally, Django comes with a "dummy" cache that doesn't actually cache -- it
  252. just implements the cache interface without doing anything.
  253. This is useful if you have a production site that uses heavy-duty caching in
  254. various places but a development/test environment where you don't want to cache
  255. and don't want to have to change your code to special-case the latter. To
  256. activate dummy caching, set :setting:`BACKEND <CACHES-BACKEND>` like so::
  257. CACHES = {
  258. 'default': {
  259. 'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
  260. }
  261. }
  262. Using a custom cache backend
  263. ----------------------------
  264. While Django includes support for a number of cache backends out-of-the-box,
  265. sometimes you might want to use a customized cache backend. To use an external
  266. cache backend with Django, use the Python import path as the
  267. :setting:`BACKEND <CACHES-BACKEND>` of the :setting:`CACHES` setting, like so::
  268. CACHES = {
  269. 'default': {
  270. 'BACKEND': 'path.to.backend',
  271. }
  272. }
  273. If you're building your own backend, you can use the standard cache backends
  274. as reference implementations. You'll find the code in the
  275. ``django/core/cache/backends/`` directory of the Django source.
  276. Note: Without a really compelling reason, such as a host that doesn't support
  277. them, you should stick to the cache backends included with Django. They've
  278. been well-tested and are easy to use.
  279. Cache arguments
  280. ---------------
  281. Each cache backend can be given additional arguments to control caching
  282. behavior. These arguments are provided as additional keys in the
  283. :setting:`CACHES` setting. Valid arguments are as follows:
  284. * :setting:`TIMEOUT <CACHES-TIMEOUT>`: The default timeout, in
  285. seconds, to use for the cache. This argument defaults to ``300`` seconds (5 minutes).
  286. You can set ``TIMEOUT`` to ``None`` so that, by default, cache keys never
  287. expire. A value of ``0`` causes keys to immediately expire (effectively
  288. "don't cache").
  289. * :setting:`OPTIONS <CACHES-OPTIONS>`: Any options that should be
  290. passed to the cache backend. The list of valid options will vary
  291. with each backend, and cache backends backed by a third-party library
  292. will pass their options directly to the underlying cache library.
  293. Cache backends that implement their own culling strategy (i.e.,
  294. the ``locmem``, ``filesystem`` and ``database`` backends) will
  295. honor the following options:
  296. * ``MAX_ENTRIES``: The maximum number of entries allowed in
  297. the cache before old values are deleted. This argument
  298. defaults to ``300``.
  299. * ``CULL_FREQUENCY``: The fraction of entries that are culled
  300. when ``MAX_ENTRIES`` is reached. The actual ratio is
  301. ``1 / CULL_FREQUENCY``, so set ``CULL_FREQUENCY`` to ``2`` to
  302. cull half the entries when ``MAX_ENTRIES`` is reached. This argument
  303. should be an integer and defaults to ``3``.
  304. A value of ``0`` for ``CULL_FREQUENCY`` means that the
  305. entire cache will be dumped when ``MAX_ENTRIES`` is reached.
  306. On some backends (``database`` in particular) this makes culling *much*
  307. faster at the expense of more cache misses.
  308. * :setting:`KEY_PREFIX <CACHES-KEY_PREFIX>`: A string that will be
  309. automatically included (prepended by default) to all cache keys
  310. used by the Django server.
  311. See the :ref:`cache documentation <cache_key_prefixing>` for
  312. more information.
  313. * :setting:`VERSION <CACHES-VERSION>`: The default version number
  314. for cache keys generated by the Django server.
  315. See the :ref:`cache documentation <cache_versioning>` for more
  316. information.
  317. * :setting:`KEY_FUNCTION <CACHES-KEY_FUNCTION>`
  318. A string containing a dotted path to a function that defines how
  319. to compose a prefix, version and key into a final cache key.
  320. See the :ref:`cache documentation <cache_key_transformation>`
  321. for more information.
  322. In this example, a filesystem backend is being configured with a timeout
  323. of 60 seconds, and a maximum capacity of 1000 items::
  324. CACHES = {
  325. 'default': {
  326. 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
  327. 'LOCATION': '/var/tmp/django_cache',
  328. 'TIMEOUT': 60,
  329. 'OPTIONS': {
  330. 'MAX_ENTRIES': 1000
  331. }
  332. }
  333. }
  334. Invalid arguments are silently ignored, as are invalid values of known
  335. arguments.
  336. .. _the-per-site-cache:
  337. The per-site cache
  338. ==================
  339. Once the cache is set up, the simplest way to use caching is to cache your
  340. entire site. You'll need to add
  341. ``'django.middleware.cache.UpdateCacheMiddleware'`` and
  342. ``'django.middleware.cache.FetchFromCacheMiddleware'`` to your
  343. :setting:`MIDDLEWARE_CLASSES` setting, as in this example::
  344. MIDDLEWARE_CLASSES = [
  345. 'django.middleware.cache.UpdateCacheMiddleware',
  346. 'django.middleware.common.CommonMiddleware',
  347. 'django.middleware.cache.FetchFromCacheMiddleware',
  348. ]
  349. .. note::
  350. No, that's not a typo: the "update" middleware must be first in the list,
  351. and the "fetch" middleware must be last. The details are a bit obscure, but
  352. see `Order of MIDDLEWARE_CLASSES`_ below if you'd like the full story.
  353. Then, add the following required settings to your Django settings file:
  354. * :setting:`CACHE_MIDDLEWARE_ALIAS` -- The cache alias to use for storage.
  355. * :setting:`CACHE_MIDDLEWARE_SECONDS` -- The number of seconds each page should
  356. be cached.
  357. * :setting:`CACHE_MIDDLEWARE_KEY_PREFIX` -- If the cache is shared across
  358. multiple sites using the same Django installation, set this to the name of
  359. the site, or some other string that is unique to this Django instance, to
  360. prevent key collisions. Use an empty string if you don't care.
  361. ``FetchFromCacheMiddleware`` caches GET and HEAD responses with status 200,
  362. where the request and response headers allow. Responses to requests for the same
  363. URL with different query parameters are considered to be unique pages and are
  364. cached separately. This middleware expects that a HEAD request is answered with
  365. the same response headers as the corresponding GET request; in which case it can
  366. return a cached GET response for HEAD request.
  367. Additionally, ``UpdateCacheMiddleware`` automatically sets a few headers in each
  368. :class:`~django.http.HttpResponse`:
  369. * Sets the ``Last-Modified`` header to the current date/time when a fresh
  370. (not cached) version of the page is requested.
  371. * Sets the ``Expires`` header to the current date/time plus the defined
  372. :setting:`CACHE_MIDDLEWARE_SECONDS`.
  373. * Sets the ``Cache-Control`` header to give a max age for the page --
  374. again, from the :setting:`CACHE_MIDDLEWARE_SECONDS` setting.
  375. See :doc:`/topics/http/middleware` for more on middleware.
  376. If a view sets its own cache expiry time (i.e. it has a ``max-age`` section in
  377. its ``Cache-Control`` header) then the page will be cached until the expiry
  378. time, rather than :setting:`CACHE_MIDDLEWARE_SECONDS`. Using the decorators in
  379. ``django.views.decorators.cache`` you can easily set a view's expiry time
  380. (using the ``cache_control`` decorator) or disable caching for a view (using
  381. the ``never_cache`` decorator). See the `using other headers`__ section for
  382. more on these decorators.
  383. .. _i18n-cache-key:
  384. If :setting:`USE_I18N` is set to ``True`` then the generated cache key will
  385. include the name of the active :term:`language<language code>` -- see also
  386. :ref:`how-django-discovers-language-preference`). This allows you to easily
  387. cache multilingual sites without having to create the cache key yourself.
  388. Cache keys also include the active :term:`language <language code>` when
  389. :setting:`USE_L10N` is set to ``True`` and the :ref:`current time zone
  390. <default-current-time-zone>` when :setting:`USE_TZ` is set to ``True``.
  391. __ `Controlling cache: Using other headers`_
  392. The per-view cache
  393. ==================
  394. .. function:: django.views.decorators.cache.cache_page
  395. A more granular way to use the caching framework is by caching the output of
  396. individual views. ``django.views.decorators.cache`` defines a ``cache_page``
  397. decorator that will automatically cache the view's response for you. It's easy
  398. to use::
  399. from django.views.decorators.cache import cache_page
  400. @cache_page(60 * 15)
  401. def my_view(request):
  402. ...
  403. ``cache_page`` takes a single argument: the cache timeout, in seconds. In the
  404. above example, the result of the ``my_view()`` view will be cached for 15
  405. minutes. (Note that we've written it as ``60 * 15`` for the purpose of
  406. readability. ``60 * 15`` will be evaluated to ``900`` -- that is, 15 minutes
  407. multiplied by 60 seconds per minute.)
  408. The per-view cache, like the per-site cache, is keyed off of the URL. If
  409. multiple URLs point at the same view, each URL will be cached separately.
  410. Continuing the ``my_view`` example, if your URLconf looks like this::
  411. urlpatterns = [
  412. url(r'^foo/([0-9]{1,2})/$', my_view),
  413. ]
  414. then requests to ``/foo/1/`` and ``/foo/23/`` will be cached separately, as
  415. you may expect. But once a particular URL (e.g., ``/foo/23/``) has been
  416. requested, subsequent requests to that URL will use the cache.
  417. ``cache_page`` can also take an optional keyword argument, ``cache``,
  418. which directs the decorator to use a specific cache (from your
  419. :setting:`CACHES` setting) when caching view results. By default, the
  420. ``default`` cache will be used, but you can specify any cache you
  421. want::
  422. @cache_page(60 * 15, cache="special_cache")
  423. def my_view(request):
  424. ...
  425. You can also override the cache prefix on a per-view basis. ``cache_page``
  426. takes an optional keyword argument, ``key_prefix``,
  427. which works in the same way as the :setting:`CACHE_MIDDLEWARE_KEY_PREFIX`
  428. setting for the middleware. It can be used like this::
  429. @cache_page(60 * 15, key_prefix="site1")
  430. def my_view(request):
  431. ...
  432. The ``key_prefix`` and ``cache`` arguments may be specified together. The
  433. ``key_prefix`` argument and the :setting:`KEY_PREFIX <CACHES-KEY_PREFIX>`
  434. specified under :setting:`CACHES` will be concatenated.
  435. Specifying per-view cache in the URLconf
  436. ----------------------------------------
  437. The examples in the previous section have hard-coded the fact that the view is
  438. cached, because ``cache_page`` alters the ``my_view`` function in place. This
  439. approach couples your view to the cache system, which is not ideal for several
  440. reasons. For instance, you might want to reuse the view functions on another,
  441. cache-less site, or you might want to distribute the views to people who might
  442. want to use them without being cached. The solution to these problems is to
  443. specify the per-view cache in the URLconf rather than next to the view functions
  444. themselves.
  445. Doing so is easy: simply wrap the view function with ``cache_page`` when you
  446. refer to it in the URLconf. Here's the old URLconf from earlier::
  447. urlpatterns = [
  448. url(r'^foo/([0-9]{1,2})/$', my_view),
  449. ]
  450. Here's the same thing, with ``my_view`` wrapped in ``cache_page``::
  451. from django.views.decorators.cache import cache_page
  452. urlpatterns = [
  453. url(r'^foo/([0-9]{1,2})/$', cache_page(60 * 15)(my_view)),
  454. ]
  455. .. templatetag:: cache
  456. Template fragment caching
  457. =========================
  458. If you're after even more control, you can also cache template fragments using
  459. the ``cache`` template tag. To give your template access to this tag, put
  460. ``{% load cache %}`` near the top of your template.
  461. The ``{% cache %}`` template tag caches the contents of the block for a given
  462. amount of time. It takes at least two arguments: the cache timeout, in seconds,
  463. and the name to give the cache fragment. The name will be taken as is, do not
  464. use a variable. For example:
  465. .. code-block:: html+django
  466. {% load cache %}
  467. {% cache 500 sidebar %}
  468. .. sidebar ..
  469. {% endcache %}
  470. Sometimes you might want to cache multiple copies of a fragment depending on
  471. some dynamic data that appears inside the fragment. For example, you might want a
  472. separate cached copy of the sidebar used in the previous example for every user
  473. of your site. Do this by passing additional arguments to the ``{% cache %}``
  474. template tag to uniquely identify the cache fragment:
  475. .. code-block:: html+django
  476. {% load cache %}
  477. {% cache 500 sidebar request.user.username %}
  478. .. sidebar for logged in user ..
  479. {% endcache %}
  480. It's perfectly fine to specify more than one argument to identify the fragment.
  481. Simply pass as many arguments to ``{% cache %}`` as you need.
  482. If :setting:`USE_I18N` is set to ``True`` the per-site middleware cache will
  483. :ref:`respect the active language<i18n-cache-key>`. For the ``cache`` template
  484. tag you could use one of the
  485. :ref:`translation-specific variables<template-translation-vars>` available in
  486. templates to achieve the same result:
  487. .. code-block:: html+django
  488. {% load i18n %}
  489. {% load cache %}
  490. {% get_current_language as LANGUAGE_CODE %}
  491. {% cache 600 welcome LANGUAGE_CODE %}
  492. {% trans "Welcome to example.com" %}
  493. {% endcache %}
  494. The cache timeout can be a template variable, as long as the template variable
  495. resolves to an integer value. For example, if the template variable
  496. ``my_timeout`` is set to the value ``600``, then the following two examples are
  497. equivalent:
  498. .. code-block:: html+django
  499. {% cache 600 sidebar %} ... {% endcache %}
  500. {% cache my_timeout sidebar %} ... {% endcache %}
  501. This feature is useful in avoiding repetition in templates. You can set the
  502. timeout in a variable, in one place, and just reuse that value.
  503. By default, the cache tag will try to use the cache called "template_fragments".
  504. If no such cache exists, it will fall back to using the default cache. You may
  505. select an alternate cache backend to use with the ``using`` keyword argument,
  506. which must be the last argument to the tag.
  507. .. code-block:: html+django
  508. {% cache 300 local-thing ... using="localcache" %}
  509. It is considered an error to specify a cache name that is not configured.
  510. .. function:: django.core.cache.utils.make_template_fragment_key(fragment_name, vary_on=None)
  511. If you want to obtain the cache key used for a cached fragment, you can use
  512. ``make_template_fragment_key``. ``fragment_name`` is the same as second argument
  513. to the ``cache`` template tag; ``vary_on`` is a list of all additional arguments
  514. passed to the tag. This function can be useful for invalidating or overwriting
  515. a cached item, for example:
  516. .. code-block:: pycon
  517. >>> from django.core.cache import cache
  518. >>> from django.core.cache.utils import make_template_fragment_key
  519. # cache key for {% cache 500 sidebar username %}
  520. >>> key = make_template_fragment_key('sidebar', [username])
  521. >>> cache.delete(key) # invalidates cached template fragment
  522. The low-level cache API
  523. =======================
  524. .. highlight:: python
  525. Sometimes, caching an entire rendered page doesn't gain you very much and is,
  526. in fact, inconvenient overkill.
  527. Perhaps, for instance, your site includes a view whose results depend on
  528. several expensive queries, the results of which change at different intervals.
  529. In this case, it would not be ideal to use the full-page caching that the
  530. per-site or per-view cache strategies offer, because you wouldn't want to
  531. cache the entire result (since some of the data changes often), but you'd still
  532. want to cache the results that rarely change.
  533. For cases like this, Django exposes a simple, low-level cache API. You can use
  534. this API to store objects in the cache with any level of granularity you like.
  535. You can cache any Python object that can be pickled safely: strings,
  536. dictionaries, lists of model objects, and so forth. (Most common Python objects
  537. can be pickled; refer to the Python documentation for more information about
  538. pickling.)
  539. Accessing the cache
  540. -------------------
  541. .. data:: django.core.cache.caches
  542. You can access the caches configured in the :setting:`CACHES` setting
  543. through a dict-like object: ``django.core.cache.caches``. Repeated
  544. requests for the same alias in the same thread will return the same
  545. object.
  546. >>> from django.core.cache import caches
  547. >>> cache1 = caches['myalias']
  548. >>> cache2 = caches['myalias']
  549. >>> cache1 is cache2
  550. True
  551. If the named key does not exist, ``InvalidCacheBackendError`` will be
  552. raised.
  553. To provide thread-safety, a different instance of the cache backend will
  554. be returned for each thread.
  555. .. data:: django.core.cache.cache
  556. As a shortcut, the default cache is available as
  557. ``django.core.cache.cache``::
  558. >>> from django.core.cache import cache
  559. This object is equivalent to ``caches['default']``.
  560. Basic usage
  561. -----------
  562. The basic interface is ``set(key, value, timeout)`` and ``get(key)``::
  563. >>> cache.set('my_key', 'hello, world!', 30)
  564. >>> cache.get('my_key')
  565. 'hello, world!'
  566. The ``timeout`` argument is optional and defaults to the ``timeout`` argument
  567. of the appropriate backend in the :setting:`CACHES` setting (explained above).
  568. It's the number of seconds the value should be stored in the cache. Passing in
  569. ``None`` for ``timeout`` will cache the value forever. A ``timeout`` of ``0``
  570. won't cache the value.
  571. If the object doesn't exist in the cache, ``cache.get()`` returns ``None``::
  572. # Wait 30 seconds for 'my_key' to expire...
  573. >>> cache.get('my_key')
  574. None
  575. We advise against storing the literal value ``None`` in the cache, because you
  576. won't be able to distinguish between your stored ``None`` value and a cache
  577. miss signified by a return value of ``None``.
  578. ``cache.get()`` can take a ``default`` argument. This specifies which value to
  579. return if the object doesn't exist in the cache::
  580. >>> cache.get('my_key', 'has expired')
  581. 'has expired'
  582. To add a key only if it doesn't already exist, use the ``add()`` method.
  583. It takes the same parameters as ``set()``, but it will not attempt to
  584. update the cache if the key specified is already present::
  585. >>> cache.set('add_key', 'Initial value')
  586. >>> cache.add('add_key', 'New value')
  587. >>> cache.get('add_key')
  588. 'Initial value'
  589. If you need to know whether ``add()`` stored a value in the cache, you can
  590. check the return value. It will return ``True`` if the value was stored,
  591. ``False`` otherwise.
  592. If you want to get a key's value or set a value if the key isn't in the cache,
  593. there is the ``get_or_set()`` method. It takes the same parameters as ``get()``
  594. but the default is set as the new cache value for that key, rather than simply
  595. returned::
  596. >>> cache.get('my_new_key') # returns None
  597. >>> cache.get_or_set('my_new_key', 'my new value', 100)
  598. 'my new value'
  599. You can also pass any callable as a *default* value::
  600. >>> import datetime
  601. >>> cache.get_or_set('some-timestamp-key', datetime.datetime.now)
  602. datetime.datetime(2014, 12, 11, 0, 15, 49, 457920)
  603. .. versionchanged:: 1.9
  604. The ``get_or_set()`` method was added.
  605. There's also a ``get_many()`` interface that only hits the cache once.
  606. ``get_many()`` returns a dictionary with all the keys you asked for that
  607. actually exist in the cache (and haven't expired)::
  608. >>> cache.set('a', 1)
  609. >>> cache.set('b', 2)
  610. >>> cache.set('c', 3)
  611. >>> cache.get_many(['a', 'b', 'c'])
  612. {'a': 1, 'b': 2, 'c': 3}
  613. To set multiple values more efficiently, use ``set_many()`` to pass a dictionary
  614. of key-value pairs::
  615. >>> cache.set_many({'a': 1, 'b': 2, 'c': 3})
  616. >>> cache.get_many(['a', 'b', 'c'])
  617. {'a': 1, 'b': 2, 'c': 3}
  618. Like ``cache.set()``, ``set_many()`` takes an optional ``timeout`` parameter.
  619. You can delete keys explicitly with ``delete()``. This is an easy way of
  620. clearing the cache for a particular object::
  621. >>> cache.delete('a')
  622. If you want to clear a bunch of keys at once, ``delete_many()`` can take a list
  623. of keys to be cleared::
  624. >>> cache.delete_many(['a', 'b', 'c'])
  625. Finally, if you want to delete all the keys in the cache, use
  626. ``cache.clear()``. Be careful with this; ``clear()`` will remove *everything*
  627. from the cache, not just the keys set by your application. ::
  628. >>> cache.clear()
  629. You can also increment or decrement a key that already exists using the
  630. ``incr()`` or ``decr()`` methods, respectively. By default, the existing cache
  631. value will incremented or decremented by 1. Other increment/decrement values
  632. can be specified by providing an argument to the increment/decrement call. A
  633. ValueError will be raised if you attempt to increment or decrement a
  634. nonexistent cache key.::
  635. >>> cache.set('num', 1)
  636. >>> cache.incr('num')
  637. 2
  638. >>> cache.incr('num', 10)
  639. 12
  640. >>> cache.decr('num')
  641. 11
  642. >>> cache.decr('num', 5)
  643. 6
  644. .. note::
  645. ``incr()``/``decr()`` methods are not guaranteed to be atomic. On those
  646. backends that support atomic increment/decrement (most notably, the
  647. memcached backend), increment and decrement operations will be atomic.
  648. However, if the backend doesn't natively provide an increment/decrement
  649. operation, it will be implemented using a two-step retrieve/update.
  650. You can close the connection to your cache with ``close()`` if implemented by
  651. the cache backend.
  652. >>> cache.close()
  653. .. note::
  654. For caches that don't implement ``close`` methods it is a no-op.
  655. .. _cache_key_prefixing:
  656. Cache key prefixing
  657. -------------------
  658. If you are sharing a cache instance between servers, or between your
  659. production and development environments, it's possible for data cached
  660. by one server to be used by another server. If the format of cached
  661. data is different between servers, this can lead to some very hard to
  662. diagnose problems.
  663. To prevent this, Django provides the ability to prefix all cache keys
  664. used by a server. When a particular cache key is saved or retrieved,
  665. Django will automatically prefix the cache key with the value of the
  666. :setting:`KEY_PREFIX <CACHES-KEY_PREFIX>` cache setting.
  667. By ensuring each Django instance has a different
  668. :setting:`KEY_PREFIX <CACHES-KEY_PREFIX>`, you can ensure that there will be no
  669. collisions in cache values.
  670. .. _cache_versioning:
  671. Cache versioning
  672. ----------------
  673. When you change running code that uses cached values, you may need to
  674. purge any existing cached values. The easiest way to do this is to
  675. flush the entire cache, but this can lead to the loss of cache values
  676. that are still valid and useful.
  677. Django provides a better way to target individual cache values.
  678. Django's cache framework has a system-wide version identifier,
  679. specified using the :setting:`VERSION <CACHES-VERSION>` cache setting.
  680. The value of this setting is automatically combined with the cache
  681. prefix and the user-provided cache key to obtain the final cache key.
  682. By default, any key request will automatically include the site
  683. default cache key version. However, the primitive cache functions all
  684. include a ``version`` argument, so you can specify a particular cache
  685. key version to set or get. For example::
  686. # Set version 2 of a cache key
  687. >>> cache.set('my_key', 'hello world!', version=2)
  688. # Get the default version (assuming version=1)
  689. >>> cache.get('my_key')
  690. None
  691. # Get version 2 of the same key
  692. >>> cache.get('my_key', version=2)
  693. 'hello world!'
  694. The version of a specific key can be incremented and decremented using
  695. the ``incr_version()`` and ``decr_version()`` methods. This
  696. enables specific keys to be bumped to a new version, leaving other
  697. keys unaffected. Continuing our previous example::
  698. # Increment the version of 'my_key'
  699. >>> cache.incr_version('my_key')
  700. # The default version still isn't available
  701. >>> cache.get('my_key')
  702. None
  703. # Version 2 isn't available, either
  704. >>> cache.get('my_key', version=2)
  705. None
  706. # But version 3 *is* available
  707. >>> cache.get('my_key', version=3)
  708. 'hello world!'
  709. .. _cache_key_transformation:
  710. Cache key transformation
  711. ------------------------
  712. As described in the previous two sections, the cache key provided by a
  713. user is not used verbatim -- it is combined with the cache prefix and
  714. key version to provide a final cache key. By default, the three parts
  715. are joined using colons to produce a final string::
  716. def make_key(key, key_prefix, version):
  717. return ':'.join([key_prefix, str(version), key])
  718. If you want to combine the parts in different ways, or apply other
  719. processing to the final key (e.g., taking a hash digest of the key
  720. parts), you can provide a custom key function.
  721. The :setting:`KEY_FUNCTION <CACHES-KEY_FUNCTION>` cache setting
  722. specifies a dotted-path to a function matching the prototype of
  723. ``make_key()`` above. If provided, this custom key function will
  724. be used instead of the default key combining function.
  725. Cache key warnings
  726. ------------------
  727. Memcached, the most commonly-used production cache backend, does not allow
  728. cache keys longer than 250 characters or containing whitespace or control
  729. characters, and using such keys will cause an exception. To encourage
  730. cache-portable code and minimize unpleasant surprises, the other built-in cache
  731. backends issue a warning (``django.core.cache.backends.base.CacheKeyWarning``)
  732. if a key is used that would cause an error on memcached.
  733. If you are using a production backend that can accept a wider range of keys (a
  734. custom backend, or one of the non-memcached built-in backends), and want to use
  735. this wider range without warnings, you can silence ``CacheKeyWarning`` with
  736. this code in the ``management`` module of one of your
  737. :setting:`INSTALLED_APPS`::
  738. import warnings
  739. from django.core.cache import CacheKeyWarning
  740. warnings.simplefilter("ignore", CacheKeyWarning)
  741. If you want to instead provide custom key validation logic for one of the
  742. built-in backends, you can subclass it, override just the ``validate_key``
  743. method, and follow the instructions for `using a custom cache backend`_. For
  744. instance, to do this for the ``locmem`` backend, put this code in a module::
  745. from django.core.cache.backends.locmem import LocMemCache
  746. class CustomLocMemCache(LocMemCache):
  747. def validate_key(self, key):
  748. """Custom validation, raising exceptions or warnings as needed."""
  749. # ...
  750. ...and use the dotted Python path to this class in the
  751. :setting:`BACKEND <CACHES-BACKEND>` portion of your :setting:`CACHES` setting.
  752. Downstream caches
  753. =================
  754. So far, this document has focused on caching your *own* data. But another type
  755. of caching is relevant to Web development, too: caching performed by
  756. "downstream" caches. These are systems that cache pages for users even before
  757. the request reaches your Web site.
  758. Here are a few examples of downstream caches:
  759. * Your ISP may cache certain pages, so if you requested a page from
  760. http://example.com/, your ISP would send you the page without having to
  761. access example.com directly. The maintainers of example.com have no
  762. knowledge of this caching; the ISP sits between example.com and your Web
  763. browser, handling all of the caching transparently.
  764. * Your Django Web site may sit behind a *proxy cache*, such as Squid Web
  765. Proxy Cache (http://www.squid-cache.org/), that caches pages for
  766. performance. In this case, each request first would be handled by the
  767. proxy, and it would be passed to your application only if needed.
  768. * Your Web browser caches pages, too. If a Web page sends out the
  769. appropriate headers, your browser will use the local cached copy for
  770. subsequent requests to that page, without even contacting the Web page
  771. again to see whether it has changed.
  772. Downstream caching is a nice efficiency boost, but there's a danger to it:
  773. Many Web pages' contents differ based on authentication and a host of other
  774. variables, and cache systems that blindly save pages based purely on URLs could
  775. expose incorrect or sensitive data to subsequent visitors to those pages.
  776. For example, say you operate a Web email system, and the contents of the
  777. "inbox" page obviously depend on which user is logged in. If an ISP blindly
  778. cached your site, then the first user who logged in through that ISP would have
  779. their user-specific inbox page cached for subsequent visitors to the site.
  780. That's not cool.
  781. Fortunately, HTTP provides a solution to this problem. A number of HTTP headers
  782. exist to instruct downstream caches to differ their cache contents depending on
  783. designated variables, and to tell caching mechanisms not to cache particular
  784. pages. We'll look at some of these headers in the sections that follow.
  785. .. _using-vary-headers:
  786. Using Vary headers
  787. ==================
  788. The ``Vary`` header defines which request headers a cache
  789. mechanism should take into account when building its cache key. For example, if
  790. the contents of a Web page depend on a user's language preference, the page is
  791. said to "vary on language."
  792. By default, Django's cache system creates its cache keys using the requested
  793. fully-qualified URL -- e.g.,
  794. ``"http://www.example.com/stories/2005/?order_by=author"``. This means every
  795. request to that URL will use the same cached version, regardless of user-agent
  796. differences such as cookies or language preferences. However, if this page
  797. produces different content based on some difference in request headers -- such
  798. as a cookie, or a language, or a user-agent -- you'll need to use the ``Vary``
  799. header to tell caching mechanisms that the page output depends on those things.
  800. To do this in Django, use the convenient
  801. :func:`django.views.decorators.vary.vary_on_headers` view decorator, like so::
  802. from django.views.decorators.vary import vary_on_headers
  803. @vary_on_headers('User-Agent')
  804. def my_view(request):
  805. # ...
  806. In this case, a caching mechanism (such as Django's own cache middleware) will
  807. cache a separate version of the page for each unique user-agent.
  808. The advantage to using the ``vary_on_headers`` decorator rather than manually
  809. setting the ``Vary`` header (using something like
  810. ``response['Vary'] = 'user-agent'``) is that the decorator *adds* to the
  811. ``Vary`` header (which may already exist), rather than setting it from scratch
  812. and potentially overriding anything that was already in there.
  813. You can pass multiple headers to ``vary_on_headers()``::
  814. @vary_on_headers('User-Agent', 'Cookie')
  815. def my_view(request):
  816. # ...
  817. This tells downstream caches to vary on *both*, which means each combination of
  818. user-agent and cookie will get its own cache value. For example, a request with
  819. the user-agent ``Mozilla`` and the cookie value ``foo=bar`` will be considered
  820. different from a request with the user-agent ``Mozilla`` and the cookie value
  821. ``foo=ham``.
  822. Because varying on cookie is so common, there's a
  823. :func:`django.views.decorators.vary.vary_on_cookie` decorator. These two views
  824. are equivalent::
  825. @vary_on_cookie
  826. def my_view(request):
  827. # ...
  828. @vary_on_headers('Cookie')
  829. def my_view(request):
  830. # ...
  831. The headers you pass to ``vary_on_headers`` are not case sensitive;
  832. ``"User-Agent"`` is the same thing as ``"user-agent"``.
  833. You can also use a helper function, :func:`django.utils.cache.patch_vary_headers`,
  834. directly. This function sets, or adds to, the ``Vary header``. For example::
  835. from django.utils.cache import patch_vary_headers
  836. def my_view(request):
  837. # ...
  838. response = render_to_response('template_name', context)
  839. patch_vary_headers(response, ['Cookie'])
  840. return response
  841. ``patch_vary_headers`` takes an :class:`~django.http.HttpResponse` instance as
  842. its first argument and a list/tuple of case-insensitive header names as its
  843. second argument.
  844. For more on Vary headers, see the `official Vary spec`_.
  845. .. _`official Vary spec`: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.44
  846. Controlling cache: Using other headers
  847. ======================================
  848. Other problems with caching are the privacy of data and the question of where
  849. data should be stored in a cascade of caches.
  850. A user usually faces two kinds of caches: their own browser cache (a private
  851. cache) and their provider's cache (a public cache). A public cache is used by
  852. multiple users and controlled by someone else. This poses problems with
  853. sensitive data--you don't want, say, your bank account number stored in a
  854. public cache. So Web applications need a way to tell caches which data is
  855. private and which is public.
  856. The solution is to indicate a page's cache should be "private." To do this in
  857. Django, use the ``cache_control`` view decorator. Example::
  858. from django.views.decorators.cache import cache_control
  859. @cache_control(private=True)
  860. def my_view(request):
  861. # ...
  862. This decorator takes care of sending out the appropriate HTTP header behind the
  863. scenes.
  864. Note that the cache control settings "private" and "public" are mutually
  865. exclusive. The decorator ensures that the "public" directive is removed if
  866. "private" should be set (and vice versa). An example use of the two directives
  867. would be a blog site that offers both private and public entries. Public
  868. entries may be cached on any shared cache. The following code uses
  869. :func:`django.utils.cache.patch_cache_control`, the manual way to modify the
  870. cache control header (it is internally called by the ``cache_control``
  871. decorator)::
  872. from django.views.decorators.cache import patch_cache_control
  873. from django.views.decorators.vary import vary_on_cookie
  874. @vary_on_cookie
  875. def list_blog_entries_view(request):
  876. if request.user.is_anonymous():
  877. response = render_only_public_entries()
  878. patch_cache_control(response, public=True)
  879. else:
  880. response = render_private_and_public_entries(request.user)
  881. patch_cache_control(response, private=True)
  882. return response
  883. There are a few other ways to control cache parameters. For example, HTTP
  884. allows applications to do the following:
  885. * Define the maximum time a page should be cached.
  886. * Specify whether a cache should always check for newer versions, only
  887. delivering the cached content when there are no changes. (Some caches
  888. might deliver cached content even if the server page changed, simply
  889. because the cache copy isn't yet expired.)
  890. In Django, use the ``cache_control`` view decorator to specify these cache
  891. parameters. In this example, ``cache_control`` tells caches to revalidate the
  892. cache on every access and to store cached versions for, at most, 3,600 seconds::
  893. from django.views.decorators.cache import cache_control
  894. @cache_control(must_revalidate=True, max_age=3600)
  895. def my_view(request):
  896. # ...
  897. Any valid ``Cache-Control`` HTTP directive is valid in ``cache_control()``.
  898. Here's a full list:
  899. * ``public=True``
  900. * ``private=True``
  901. * ``no_cache=True``
  902. * ``no_transform=True``
  903. * ``must_revalidate=True``
  904. * ``proxy_revalidate=True``
  905. * ``max_age=num_seconds``
  906. * ``s_maxage=num_seconds``
  907. For explanation of Cache-Control HTTP directives, see the `Cache-Control spec`_.
  908. (Note that the caching middleware already sets the cache header's max-age with
  909. the value of the :setting:`CACHE_MIDDLEWARE_SECONDS` setting. If you use a custom
  910. ``max_age`` in a ``cache_control`` decorator, the decorator will take
  911. precedence, and the header values will be merged correctly.)
  912. If you want to use headers to disable caching altogether,
  913. ``django.views.decorators.cache.never_cache`` is a view decorator that adds
  914. headers to ensure the response won't be cached by browsers or other caches.
  915. Example::
  916. from django.views.decorators.cache import never_cache
  917. @never_cache
  918. def myview(request):
  919. # ...
  920. .. _`Cache-Control spec`: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9
  921. Order of MIDDLEWARE_CLASSES
  922. ===========================
  923. If you use caching middleware, it's important to put each half in the right
  924. place within the :setting:`MIDDLEWARE_CLASSES` setting. That's because the cache
  925. middleware needs to know which headers by which to vary the cache storage.
  926. Middleware always adds something to the ``Vary`` response header when it can.
  927. ``UpdateCacheMiddleware`` runs during the response phase, where middleware is
  928. run in reverse order, so an item at the top of the list runs *last* during the
  929. response phase. Thus, you need to make sure that ``UpdateCacheMiddleware``
  930. appears *before* any other middleware that might add something to the ``Vary``
  931. header. The following middleware modules do so:
  932. * ``SessionMiddleware`` adds ``Cookie``
  933. * ``GZipMiddleware`` adds ``Accept-Encoding``
  934. * ``LocaleMiddleware`` adds ``Accept-Language``
  935. ``FetchFromCacheMiddleware``, on the other hand, runs during the request phase,
  936. where middleware is applied first-to-last, so an item at the top of the list
  937. runs *first* during the request phase. The ``FetchFromCacheMiddleware`` also
  938. needs to run after other middleware updates the ``Vary`` header, so
  939. ``FetchFromCacheMiddleware`` must be *after* any item that does so.