分析 Django Web 服务器的高启动时间

发布于 2024-10-26 23:59:45 字数 154 浏览 1 评论 0原文

我注意到,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耶耶耶 2024-11-02 23:59:45

我找到了一个简单有效的解决方案:

python -m cProfile manage.py runserver > profiled

有关 Python 分析器的更多详细信息此处(官方文档)。

我还会发布Python 分析视频介绍的链接和相关工具(PyCon 2009)

I found an easy and effective solution doing this:

python -m cProfile manage.py runserver > profiled

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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文