summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-08-02 00:59:14 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-08-02 00:59:14 (GMT)
commitc8dc62d6028e51d06b8643c482bd2c7ec0a03d47 (patch)
treee81ebc175b13d292fd036cfb4462aa76fd7a2ca4
parenta2fa2e5e5408caa773585a333994ea043eaba265 (diff)
downloadcpython-c8dc62d6028e51d06b8643c482bd2c7ec0a03d47.zip
cpython-c8dc62d6028e51d06b8643c482bd2c7ec0a03d47.tar.gz
cpython-c8dc62d6028e51d06b8643c482bd2c7ec0a03d47.tar.bz2
Add example applications for the LRU and LFU cache docs.
-rw-r--r--Doc/library/functools.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst
index b2d69de..c6f5870 100644
--- a/Doc/library/functools.rst
+++ b/Doc/library/functools.rst
@@ -59,7 +59,8 @@ The :mod:`functools` module defines the following functions:
<http://en.wikipedia.org/wiki/Cache_algorithms#Least-Frequently_Used>`_
is indicated when the pattern of calls does not change over time, when
more the most common calls already seen are the best predictors of the
- most common upcoming calls.
+ most common upcoming calls (for example, a phonelist of popular
+ help-lines may have access patterns that persist over time).
.. versionadded:: 3.2
@@ -84,7 +85,9 @@ The :mod:`functools` module defines the following functions:
A `LRU (least recently used) cache
<http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used>`_
is indicated when the pattern of calls changes over time, such as
- when more recent calls are the best predictors of upcoming calls.
+ when more recent calls are the best predictors of upcoming calls
+ (for example, the most popular articles on a news server tend to
+ change every day).
.. versionadded:: 3.2