64e4fb8cc0
A fixed size dict like container which evicts Least Recently Used (LRU) items once size limit is exceeded. There are many python implementations available which does similar things. This is a fast and efficient C implementation. LRU maximum capacity can be modified at run-time.
5 lines
279 B
Text
5 lines
279 B
Text
A fixed size dict like container which evicts Least Recently Used
|
|
(LRU) items once size limit is exceeded. There are many python
|
|
implementations available which does similar things. This is a fast
|
|
and efficient C implementation. LRU maximum capacity can be modified
|
|
at run-time.
|