Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Python 2 中有几个工具,但一切似乎都过时了。
我找到了 PySizer 和 Heapy,但一切似乎都是面向 Python2 的,并且需要付出很多努力才能移植。
objgraph 很有趣,但仍然不是一个完整的分析器
使用的是哪个工具?
Pymler是一个与 Python 2.x 和 Python3.x 兼容的 Python 内存分析器。
objgraph与 Python 3 兼容
memprof适用于 Python3:
memprof
http://jmdana.github.io/memprof/
它将记录并绘制所有变量的内存占用。