summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-12-03 05:53:26 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-12-03 05:53:26 +0000
commit500021a9233dee9a4bd1fc6c88a586d720905f89 (patch)
tree5a8acc778f930f8e029e8414da278ef5f6fcadb3 /docs
parenta261602bd3e9e2e76559ce4257bf32ce95b71d54 (diff)
[1.0.X] Fixed #9740 -- Updated and correct usage of max_entries in cache documentation.
Backport of r9556 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9559 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/cache.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 40ea0f9900..92e0c9c044 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -213,8 +213,9 @@ All caches may take arguments. They're given in query-string style on the
minutes (300 seconds).
max_entries
- For the simple and database backends, the maximum number of entries
- allowed in the cache before it is cleaned. Defaults to 300.
+ For the ``locmem``, ``filesystem`` and ``database`` backends, the
+ maximum number of entries allowed in the cache before it is cleaned.
+ Defaults to 300.
cull_percentage
The percentage of entries that are culled when max_entries is reached.
@@ -231,7 +232,7 @@ In this example, ``timeout`` is set to ``60``::
In this example, ``timeout`` is ``30`` and ``max_entries`` is ``400``::
- CACHE_BACKEND = "memcached://127.0.0.1:11211/?timeout=30&max_entries=400"
+ CACHE_BACKEND = "locmem:///?timeout=30&max_entries=400"
Invalid arguments are silently ignored, as are invalid values of known
arguments.