Skip to main content

Dictionary with auto-expiring values for caching purposes

Project description

Expiring Dict

https://travis-ci.org/mailgun/expiringdict.svg?branch=master https://coveralls.io/repos/github/mailgun/expiringdict/badge.svg?branch=master

ChangeLog

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!

Installation

If you wish to install from PyPi:

pip install expiringdict

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

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

or to install with test dependencies (Nose, Mock, coverage) run from the directory above:

pip install -e expiringdict[test]

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)

put and get a value there:

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

copy from dict or OrderedDict:

from expiringdict import ExpiringDict
my_dict=dict()
my_dict['test'] = 1
cache = ExpiringDict(max_len=100, max_age_seconds=10, items=my_dict)
assert cache['test'] == 1

copy from another ExpiringDict, with or without new length and timeout:

from expiringdict import ExpiringDict
cache_hour = ExpiringDict(max_len=100, max_age_seconds=3600)
cache_hour['test'] = 1
cache_hour_copy = ExpiringDict(max_len=None, max_age_seconds=None, items=cache_hour)
cache_minute_copy = ExpiringDict(max_len=None, max_age_seconds=60, items=cache_hour)
assert cache_minute_copy['test'] == 1

pickle :

import dill
from expiringdict import ExpiringDict
cache = ExpiringDict(max_len=100, max_age_seconds=10)
cache['test'] = 1
pickled_cache = dill.dumps(cache)
unpickled_cache = dill.loads(cache)
assert unpickled_cache['test'] == 1

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-1.2.2.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

expiringdict-1.2.2-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file expiringdict-1.2.2.tar.gz.

File metadata

  • Download URL: expiringdict-1.2.2.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.12

File hashes

Hashes for expiringdict-1.2.2.tar.gz
Algorithm Hash digest
SHA256 300fb92a7e98f15b05cf9a856c1415b3bc4f2e132be07daa326da6414c23ee09
MD5 04bf921308b3334f4c2fbaab35e5b4b7
BLAKE2b-256 fc62c2af4ebce24c379b949de69d49e3ba97c7e9c9775dc74d18307afa8618b7

See more details on using hashes here.

File details

Details for the file expiringdict-1.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for expiringdict-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 09a5d20bc361163e6432a874edd3179676e935eb81b925eccef48d409a8a45e8
MD5 b8526dd0970c496764eea3bbbb30497c
BLAKE2b-256 cb84a04c59324445f4bcc98dc05b39a1cd07c242dde643c1a3c21e4f7beaf2f2

See more details on using hashes here.

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