性能分析
pyzhizhuren
这个作者很懒,什么都没留下…
展开
-
python中内存分析
Pympler用于测量、监控和分析正在运行的python应用程序中python对象的内存行为,完全由python编写,仅支持3.6以上版本安装pip install Pympler第一步:定位内存泄漏from pympler import trackertr = tracker.SummaryTracker()接口返回处打印内存差异,观察内存是否有泄漏tr.print_diff() # 本次内存和上次内存块的差异然后我们访问接口,多触发几次,不用看前两次,等输出稳定后,原创 2022-01-19 09:20:56 · 1616 阅读 · 0 评论 -
python代码性能分析cProfile、line_profiler
性能分析1.cProfile官方文档:https://docs.python.org/zh-cn/3.8/library/profile.html?highlight=cprofile#module-cProfile说明:https://juejin.cn/post/6844903474250022919cProfile是一种确定性分析器,只测量CPU时间,并不关心内存消耗和其他与内存相关联的信息####django扩展库确实强大 django-cprofile-middleware-dmw原创 2022-01-18 10:59:08 · 785 阅读 · 0 评论