summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Lazarević <laza@e11bits.com>2024-01-26 03:59:54 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2024-01-29 19:24:10 +0100
commit28d6db26a2e3ff7f44ea7843913496bd4a752f24 (patch)
treef8f2d508c8468e25ca04d74470b78fd6deca9726
parentf588c444fd94e07d202cbc207ac32ec2dfed49e6 (diff)
[5.0.x] Fixed #35141 -- Clarified the expected type of CACHE_MIDDLEWARE_SECONDS setting.
Backport of a5365339eaee043895a79dbbdd7462f1399136e5 from main
-rw-r--r--docs/ref/settings.txt4
-rw-r--r--docs/topics/cache.txt5
2 files changed, 5 insertions, 4 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 477c83fca4..a7b789c3f6 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -273,8 +273,8 @@ See :doc:`/topics/cache`.
Default: ``600``
-The default number of seconds to cache a page for the :ref:`cache middleware
-<the-per-site-cache>`.
+The default integer number of seconds to cache a page for the
+:ref:`cache middleware <the-per-site-cache>`.
See :doc:`/topics/cache`.
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index a2bdba7ccd..d2951acfa4 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -608,8 +608,9 @@ entire site. You'll need to add
Then, add the following required settings to your Django settings file:
* :setting:`CACHE_MIDDLEWARE_ALIAS` -- The cache alias to use for storage.
-* :setting:`CACHE_MIDDLEWARE_SECONDS` -- The number of seconds each page should
- be cached.
+* :setting:`CACHE_MIDDLEWARE_SECONDS` -- The integer number of seconds each
+ page should be cached.
+
* :setting:`CACHE_MIDDLEWARE_KEY_PREFIX` -- If the cache is shared across
multiple sites using the same Django installation, set this to the name of
the site, or some other string that is unique to this Django instance, to