Skip to content

sodrooome/lru-cache

Repository files navigation

LRU Cache

PyPI - Status Downloads Build Status codecov

Package for tracking store in-data memory using replacement cache algorithm / LRU cache. The Priority of storing or removing the data based on Min-Max heap algorithm or basic priority queue instead using OrderedDict module that provided by Python.

Usage

LRUCache only works in Python version 3.5 and above, you can install it with :

pip3 install lruheap

Documentation

You can read the fully detailed explanation about LRUCache in here

Contribution

Since this package is still being under developed, any contributions are much welcomed and you can read on contribution page.

License

This package is licensed under the MIT License.