Skip to main content

Dictionary with auto-expiring values for caching purposes, support default value

Project description

Expiring Dict

https://travis-ci.org/weaming/expiringdict.svg?branch=master

expiringdict is a Python caching library. The core of the library is ExpiringDict class which is an ordered dictionary with auto-expiring values for caching purposes. Expiration happens on any access, object is locked during cleanup from expired values. ExpiringDict can not store more than max_len elements - the oldest will be deleted.

Note: Iteration over dict and also keys() do not remove expired values!

Features after fork

  • optioinal default value passed by dict after keys expired

Installation

If you wish to install from PyPi:

pip install expiringdict-with-default

If you wish to download the source and install from GitHub:

git clone git@github.com:weaming/expiringdict.git
python setup.py install

To run tests with coverage:

nosetests --with-coverage --cover-package=expiringdict

Usage

Create a dictionary with capacity for 100 elements and elements expiring in 10 seconds:

from expiringdict import ExpiringDict
cache = ExpiringDict(max_len=100, max_age_seconds=10, default={'name': 'Alice'})

put and get a value there:

cache["key"] = "value"
cache.get("key")

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

expiringdict_with_default-1.1.7.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

expiringdict_with_default-1.1.7-py2.py3-none-any.whl (3.7 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