skip to navigation
skip to content

lrucache 0.2

Least-recently-used (LRU) cache module

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