分析 Django Web 服务器的高启动时间
我注意到,manage.py runserver
需要花费大量时间来启动我正在处理的 Django 项目的开发 Web 服务器。我想知道是否有一种方法可以了解初创公司的哪些部分需要如此多的资源,最终能够收集足够的信息来解决问题。
有人知道我能做什么吗?
I noted that manage.py runserver
takes a lot of time to start the development web server for a Django project I'm working on. I'm wondering if there's a way to understand what part of the startup requires so much resources, being eventually able to collect enough information to fix the problem.
Anyone has an idea about what could I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一个简单有效的解决方案:
有关 Python 分析器的更多详细信息此处(官方文档)。
我还会发布Python 分析视频介绍的链接和相关工具(PyCon 2009)
I found an easy and effective solution doing this:
Further details about Python profilers here (official docs).
I'd also post a link to a video introduction to Python profiling and related tools (PyCon 2009)