python3-lru-dict

Dict like LRU container for Python
  https://github.com/amitdev/lru-dict
  0
  no reviews



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.