Skip to main content

Creates a python disk LRU / cache - great for apps that want to save data

Project description

disklru

Creates a disk based lru that you can use in your apps.

Useful for caches.

Zero dependency package.

Linting

MacOS_Tests Ubuntu_Tests Win_Tests

Usage

LRU_CACHE_FILE = "cache.db"
MAX_FILES = 4
cache = DiskLRUCache(LRU_CACHE_FILE, MAX_FILES)
cache.put("key", "value")
assert cache.get("key1") == "val"
cache.clear()

Windows

This environment requires you to use git-bash.

Linting

Run ./lint.sh to find linting errors using pylint, flake8 and mypy.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

disklru-1.0.4.tar.gz (9.9 kB view hashes)

Uploaded Source

Built Distribution

disklru-1.0.4-py2.py3-none-any.whl (3.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page