我可以使用哪些工具来监控 PyPy 的内存消耗?如果该工具可移植到各种 Python 解释器(CPython 和 PyPy)和版本(2.6 到 3.3),那就更好了。
问问题
1043 次
1 回答
1
我只知道一个分析器,它是由 python 社区本身提供的,内存分析器。
您可以使用 pip 或 easy_install 下载它,
$ easy_install -U memory_profiler # pip install -U memory_profiler
psutil是推荐与此分析器一起使用的模块。
如果你想从源代码安装它,
$ python setup.py install
最新的资源可以在https://github.com/fabianp/memory_profiler上找到。
文档、示例、API 帮助可以在https://pypi.python.org/pypi/memory_profiler上找到。
于 2013-08-03T04:38:51.107 回答