From b2c3b2cebb474f7a62dbf6df821accccd2458133 Mon Sep 17 00:00:00 2001 From: Jay Hutchinson Date: Wed, 18 Mar 2015 16:04:42 -0500 Subject: Small change to README. --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.2.1