分析将自身分叉为守护进程的 python 程序
是否可以在将自身分叉为守护进程的多线程 python 程序上运行 cprofile?我知道你可以让它在多线程上工作,但我还没有看到任何关于分析守护进程的内容。
Is it possible to run cprofile on a mult-threaded python program that forks itself into a daemon process? I know you can make it work on multi thread, but I haven't seen anything on profiling a daemon.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您始终可以针对单个进程或单个线程进行分析&优化。之后使其成为多线程。我在这里错过了什么吗?
Well you can always profile it for a single process or single thread & optimize. After which make it multi-thread. Am I missing something here?