Python 多重处理如何在 Windows 上实现?
由于没有 Windows fork() 调用,Python 2.6 中的多处理包在 Windows 下是如何实现的? 在 Win32 线程之上或某种假分支之上,或者只是在现有多线程之上的兼容性?
Given the absence of a Windows fork() call, how's the multiprocessing package in Python 2.6 implemented under Windows? On top of Win32 threads or some sort of fake fork or just compatibility on top of the existing multithreading?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是通过使用子进程调用 sys.executable(即启动一个新的 Python 进程)来完成的,然后序列化所有全局变量,并通过管道发送它们。 当前进程的穷人克隆。 这就是在 Windows 平台上使用多处理时发现的额外限制的原因。
您可能还有兴趣查看 Jesse Noller 在 PyCon 上的演讲,他在其中讨论了多处理的使用。
It's done using a subprocess call to sys.executable (i.e. start a new Python process) followed by serializing all of the globals, and sending those over the pipe. A poor man's cloning of the current process. This is the cause of the extra restrictions found when using multiprocessing on Windows plaform.
You may also be interested in viewing Jesse Noller's talk from PyCon about multiprocessing where he discusses its use.