我需要检查我在python中使用的对象的内存统计信息 我遇到了guppy和pysizer,但它们不适用于python2.7 是否有可用于python 2.7的内存分析器? 如果没有,我有办法自己做吗?
答案 0 :(得分:2)
您可能希望尝试根据具体情况调整以下代码并支持您的数据类型:
import sys
def sizeof(variable):
def _sizeof(obj, memo):
address = id(obj)
if address in memo:
return 0
memo.add(address)
total = sys.getsizeof(obj)
if obj is None:
pass
elif isinstance(obj, (int, float, complex)):
pass
elif isinstance(obj, (list, tuple, range)):
if isinstance(obj, (list, tuple)):
total += sum(_sizeof(item, memo) for item in obj)
elif isinstance(obj, str):
pass
elif isinstance(obj, (bytes, bytearray, memoryview)):
if isinstance(obj, memoryview):
total += _sizeof(obj.obj, memo)
elif isinstance(obj, (set, frozenset)):
total += sum(_sizeof(item, memo) for item in obj)
elif isinstance(obj, dict):
total += sum(_sizeof(key, memo) + _sizeof(value, memo)
for key, value in obj.items())
elif hasattr(obj, '__slots__'):
for name in obj.__slots__:
total += _sizeof(getattr(obj, name, obj), memo)
elif hasattr(obj, '__dict__'):
total += _sizeof(obj.__dict__, memo)
else:
raise TypeError('could not get size of {!r}'.format(obj))
return total
return _sizeof(variable, set())
答案 1 :(得分:2)
这是适用于Python 2.7的版本:The Pympler package。
答案 2 :(得分:1)
我不知道Python 2.7的任何分析器 - 但是查看已添加到sys
模块的以下函数,它可以帮助您自己完成。
“新功能
getsizeof()
需要一个 Python对象并返回金额 测量对象使用的内存 以字节为单位内置对象返回 正确的结果;第三方 扩展可能不会,但可以定义一个__sizeof__()
方法返回对象的大小。“
以下是在线文档中包含相关信息的地点的链接:
What’s New in Python 2.6
27.1. sys module — System-specific parameters and functions