在Python中,以currentThread()为键的字典会导致内存泄漏吗?

发布于 2024-12-12 06:48:46 字数 312 浏览 0 评论 0原文

我正在调试 Django 应用程序中的内存泄漏,并且 django_cachepurge 中可能有一些奇怪的事情:

from threading import currentThread

_urls_to_purge = {}

def add_purge_url(url):
    # ....

    _urls_to_purge.setdefault(currentThread(), set()).add(url)

这样的构造容易发生内存泄漏吗? 我怀疑是这样,除非我不熟悉这里的一些 Python 魔法。 没有清理字典的位置。

I'm debugging memory leaks in a Django application, and could something curious in django_cachepurge:

from threading import currentThread

_urls_to_purge = {}

def add_purge_url(url):
    # ....

    _urls_to_purge.setdefault(currentThread(), set()).add(url)

Is such construct prone to memory leaks?
I suspect so, unless I'm not familiar with some Python magic here.
There is no location where the dict is cleaned up.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感情旳空白 2024-12-19 06:48:47

我不知道 currentThread 返回什么,但您可能可以使用内置的 idhash 函数来获取安全值。

如果查找还不够,例如因为您想迭代容器,则可以使用 weakref.WeakKeyDictionary

I don't know what currentThread returns, but you probably can use the built-in id or hash functions on it to get a safe value.

If lookup isn't enough, e.g. because you want to iterate over the container, there is weakref.WeakKeyDictionary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文