This package provides a simple but efficient
least-recently-used (LRU) cache module. The
LRUCache class provides a container interface with
prioritized caching. The implementation uses a
heap and a dictionary to provide quick inserts,
deletes, and references.