summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorDaniyal <abbasi.daniyal98@gmail.com>2021-05-24 05:31:50 +0530
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-09-14 15:50:08 +0200
commitec212c66167759a2a40b13d5efc47d883816d4da (patch)
tree740bed1fef217361ef973c732045de73bb6f64d1 /docs/ref
parent676bd084f2509f4201561d5c77ed4ecbd157bfa0 (diff)
Fixed #33012 -- Added Redis cache backend.
Thanks Carlton Gibson, Chris Jerdonek, David Smith, Keryn Knight, Mariusz Felisiak, and Nick Pope for reviews and mentoring this Google Summer of Code 2021 project.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/settings.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 12d89142d1..0c5b3fe307 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -153,6 +153,7 @@ The cache backend to use. The built-in cache backends are:
* ``'django.core.cache.backends.locmem.LocMemCache'``
* ``'django.core.cache.backends.memcached.PyMemcacheCache'``
* ``'django.core.cache.backends.memcached.PyLibMCCache'``
+* ``'django.core.cache.backends.redis.RedisCache'``
You can use a cache backend that doesn't ship with Django by setting
:setting:`BACKEND <CACHES-BACKEND>` to a fully-qualified path of a cache
@@ -162,6 +163,10 @@ backend class (i.e. ``mypackage.backends.whatever.WhateverCache``).
The ``PyMemcacheCache`` backend was added.
+.. versionchanged:: 4.0
+
+ The ``RedisCache`` backend was added.
+
.. setting:: CACHES-KEY_FUNCTION
``KEY_FUNCTION``