freebsd-ports/devel/py-expiringdict/pkg-descr
Adam Weinberger 0c926073ff Fix a common grammar error: "can not" means the opposite of "cannot."
"Can not" means "it is possible not to," and "cannot" means "it is impossible to."
2018-08-01 16:33:11 +00:00

7 lines
386 B
Text

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.
WWW: https://github.com/mailgun/expiringdict