fork vs spawn
借用python doc的说明:链接
- spawn:适用于windows与unix
The parent process starts a fresh Python interpreter process. The child process will only inherit those resources necessary to run the process object’s run() method. In particular, unnecessary file descriptors and handles from the parent process will not be inherited. Starting a process using this method is rather slow compared to using fork or forkserver.
简单说就是spawn会生成一个新的进程,仅仅继承运行一个空进程所需的最小资源,一般来说会比fork方法慢。 – (⊙﹏⊙)什么场景需要反复多次生成进程啊?感觉不是什么缺点。 - fork:仅存在于unix,unix默认的方法。
父进程使用 os.fork() 来产生 Python 解释器分叉。子进程在开始时实际上与父进程相同。父进程的所有资源都由子进程继承。请注意,安全分叉多线程进程是棘手的。 – (⊙﹏⊙) 我为什么要继承父进程的所有资源啊,不晓得应用场景。
——
⽗进程产⽣⼦进程使⽤ fork 拷⻉出来⼀个⽗进程的副本,此时只拷⻉了⽗进程的⻚表,两个进程都读同⼀块内存。#