summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Hutchinson <jlhutch@gmail.com>2015-03-18 16:04:42 -0500
committerJay Hutchinson <jlhutch@gmail.com>2015-03-18 16:04:42 -0500
commitb2c3b2cebb474f7a62dbf6df821accccd2458133 (patch)
treea63dab9105d4457f1d273c3112f51c2a1b082313
parent8bc0dd277d38aca3535959409cc3f083eb136108 (diff)
downloadpylru-b2c3b2cebb474f7a62dbf6df821accccd2458133.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 e2c76b2..efc84b6 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 an object with a dict interface with a cache, resulting in a new object with a dict interface, but now cached. 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 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.