Skip to main content

a simple multi-process scalable cache implementation

Project description

Documentation

The full documentation is at https://cachelite.readthedocs.org/

Quickstart

Install cachelite:

pip install cachelite

Then you can use it.

import cachelite from CacheLite

cache = CacheLite("/tmp/YOUR_TO_CACHE_DIR")

#put a key-value
cache["YOUR_KEY"] = "YOUR_VALUE"

#get a value
value = cache["YOUR_KEY"]

#delete a value
del cache["YOUR_KEY"]

#get size of data entries
len(cache)

#iteration
for a in cache:
    print(a)

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

cachelite-0.9.0.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

cachelite-0.9.0-py3-none-any.whl (6.1 kB view hashes)

Uploaded 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