summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Hutchinson <jlhutch@gmail.com>2015-03-18 16:07:59 -0500
committerJay Hutchinson <jlhutch@gmail.com>2015-03-18 16:07:59 -0500
commitb1a76a88ad56f41f71231ade3533c416d814a57f (patch)
tree4ac153d079ae01faf2e5a2b0bbedb836e9193935
parentb2c3b2cebb474f7a62dbf6df821accccd2458133 (diff)
downloadpylru-b1a76a88ad56f41f71231ade3533c416d814a57f.tar.gz
Small change to README.
-rw-r--r--README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.txt b/README.txt
index efc84b6..f37c9cc 100644
--- a/README.txt
+++ b/README.txt
@@ -8,7 +8,7 @@ A least recently used (LRU) cache for Python.
Introduction
============
-Pylru implements a true LRU cache along with several support classes. The cache is efficient and written in pure Python. It works with Python 2.6+ including the 3.x series. Basic operations (lookup, insert, delete) all run in a constant amount of time. Pylru provides a cache class with a simple dict interface. It also provides classes to wrap any object that has dict interface with a cache. Both write-through and write-back semantics are supported. Pylru also provides classes to wrap functions in a similar way, including a function decorator.
+Pylru implements a true LRU cache along with several support classes. The cache is efficient and written in pure Python. It works with Python 2.6+ including the 3.x series. Basic operations (lookup, insert, delete) all run in a constant amount of time. Pylru provides a cache class with a simple dict interface. It also provides classes to wrap any object that has a dict interface with a cache. Both write-through and write-back semantics are supported. Pylru also provides classes to wrap functions in a similar way, including a function decorator.
You can install pylru or you can just copy the source file pylru.py and use it directly in your own project. The rest of this file explains what the pylru module provides and how to use it. If you want to know more examine pylru.py. The code is straightforward and well commented.