Find all references to an object in python(在python中查找对对象的所有引用)
问题描述
在 python 中查找对象的所有引用的好方法是什么?
我问的原因是看起来我们有内存泄漏".我们正在从 Web 浏览器将图像文件上传到服务器.每次我们这样做时,服务器上的内存使用量与刚刚上传的文件的大小成正比.这个内存永远不会被python垃圾收集释放,所以我认为可能有指向图像数据的杂散引用没有被删除或超出范围,即使在每个请求结束时也是如此.
The reason I ask is that it looks like we have a "memory leak". We are uploading image files to the server from a web browser. Each time we do this, the memory usage on the server goes up proportionately to the size of the file that was just uploaded. This memory is never getting released by the python garbage collection, so I'm thinking that there are probably stray references pointing to the image data that are not getting deleted or going out of scope, even at the end of each request.
我认为能够问 python 会很好:哪些引用仍然指向这个内存?"这样我就可以弄清楚是什么阻止了垃圾收集器释放它.
I figure it would be nice to be able to ask python: "What references are still pointing to this memory?" so that I can figure out what is keeping the garbage collection from freeing it.
目前我们在 Heroku 服务器上运行 Python 和 Django.
Currently we are running Python and Django on a Heroku server.
推荐答案
Python 的标准库有 gc 模块,其中包含垃圾收集器 API.您可能想要的功能之一是
Python's standard library has gc module containing garbage collector API. One of the function you possible want to have is
gc.get_objects()
此函数返回垃圾收集器当前跟踪的所有对象的列表.下一步是对其进行分析.
This function returns list of all objects currently tracked by garbage collector. The next step is to analyze it.
如果您知道要跟踪的对象,可以使用 sys 模块的 getrefcount 函数:
If you know the object you want to track you can use sys module's getrefcount function:
>>> x = object()
>>> sys.getrefcount(x)
2
>>> y = x
>>> sys.getrefcount(x)
3
这篇关于在python中查找对对象的所有引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在python中查找对对象的所有引用
基础教程推荐
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
