Open Jack-Tian opened 7 years ago
python 内存泄漏吗?
import gc
import objgraph as objgraph
def diag():
with open("objgraph.log", 'a+') as f:
gc.collect()
objgraph.show_most_common_types(limit=20, file=f)
把diag()放到那个while循环里,可以看到list等的数量在不断增长。 用任务管理器看python进程占的memory也一点一点变大。
同发现泄漏,关掉Report之后就平稳许多了。可以这样规避,用完之后,执行
del rp
Version information
What steps will reproduce the problem?
会发生内存泄漏。请帮忙看看这个问题。