blob: c1879b625590bd9a9c8d898273de029756802145 (
plain) (
blame)
1
2
3
4
5
|
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 cannot store more than max_len
elements - the oldest will be deleted.
|