diff options
author | Brenton Earl <brent@exitstatusone.com> | 2015-11-18 23:38:11 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-11-18 23:38:11 +0700 |
commit | 3a9223ebd38411f409c039f09b55792253c25c6b (patch) | |
tree | b0559141aff93126b9d1a547327ea28b08ecfe9c /python/darts.util.lru/README | |
parent | ed7a6a3d7d1fb206cb2df27b610d35b438d110a3 (diff) |
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/README | 2 |
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 0000000000000..3ada09ce48164 --- /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. |