Python 中的阻塞与非阻塞网络 IO
我有一些 python 代码是由我之前的开发人员编写的。它将 UDP 消息发送到 P2P 网络中的节点。我正在编写该代码的并行版本。此代码向 P2P 网络发送多个并行消息。不幸的是,该代码消耗了太多的 CPU。我假设这是因为所有网络 I/O 轮询。如果我使用异步 I/O(扭曲框架)会是一个好主意吗?
I have some python code that was written by a developer before me. It sends UDP messages to nodes in a P2P network. I am writing a parallel version of that code. This code sends multiple parallel messages to the P2P network. Unfortunately, the code is consuming too much CPU. I am assuming it is because of all the network I/O polling. Will it be a good idea if I used asynchronous I/O (twisted framework)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
Yes.