在 os.fork() 之前导入reactor模块时出现性能问题
我在尝试这样做时遇到了性能问题:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不能使用 subprocess 代替 os.fork 吗?
Can't you use subprocess instead of os.fork?