python 中值过期的容器
我正在寻找一个线程安全的Python容器,其中的值在一段时间后会自动删除。存在这样的类吗?
I am after a thread safe Python container where the values are automatically removed after a time. Does such a class exist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是 ExpireCounter: 的线程安全版本:
可以像这样使用:
Here is a thread safe version of ExpireCounter:
which can be used like this:
也许您需要 LRU 缓存。这是我一直想尝试的一个:
http://pypi.python.org/pypi/ repoze.lru
看起来是线程安全的。
Perhaps you want an LRU cache. Here's one I've been meaning to try out:
http://pypi.python.org/pypi/repoze.lru
It seems to be thread safe.
这或多或少是我现在想要的:
This is more or less what I want for now: