在 os.fork() 之前导入reactor模块时出现性能问题

发布于 2024-08-20 01:32:37 字数 254 浏览 4 评论 0原文

我在尝试这样做时遇到了性能问题:

from twisted.internet import reactor
#some codes here
pid = os.fork()
if not pid:
    #some codes blahblahblah
    reactor.run()

这导致性能非常低,并且我没有从官方文档中找到有用的信息,我相信它是因为我在 os.fork() 之前导入了reactor模块,知道吗?

i got a performance issue when trying to do:

from twisted.internet import reactor
#some codes here
pid = os.fork()
if not pid:
    #some codes blahblahblah
    reactor.run()

this caused very low performance and i didn't find useful informations from the official documentation, i believe it because i import reactor module before os.fork(), any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

懒猫 2024-08-27 01:32:37

不能使用 subprocess 代替 os.fork 吗?

Can't you use subprocess instead of os.fork?

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