summaryrefslogtreecommitdiffstats
path: root/python/darts.util.lru/README
diff options
context:
space:
mode:
author Brenton Earl2015-11-18 17:38:11 +0100
committer Willy Sudiarto Raharjo2015-11-18 17:38:11 +0100
commit3a9223ebd38411f409c039f09b55792253c25c6b (patch)
treeb0559141aff93126b9d1a547327ea28b08ecfe9c /python/darts.util.lru/README
parented7a6a3d7d1fb206cb2df27b610d35b438d110a3 (diff)
downloadslackbuilds-3a9223ebd38411f409c039f09b55792253c25c6b.tar.gz
python/darts.util.lru: Added (Dictionary with LRU behaviour).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/darts.util.lru/README')
-rw-r--r--python/darts.util.lru/README2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/darts.util.lru/README b/python/darts.util.lru/README
new file mode 100644
index 0000000000..3ada09ce48
--- /dev/null
+++ b/python/darts.util.lru/README
@@ -0,0 +1,2 @@
+A simple dictionary with LRU behaviour. Least Recently Used (LRU) is a
+cache alogarithm that discards the least recently used items first.