Python 多重处理如何在 Windows 上实现?

发布于 2024-07-17 12:35:15 字数 105 浏览 3 评论 0原文

由于没有 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 技术交流群。

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

发布评论

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

评论(1

浅听莫相离 2024-07-24 12:35:15

这是通过使用子进程调用 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.

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