标签:queue python 启动慢 作者 toc nta 需要 test int
os.register_at_fork进行清理锁操作(需要拿到锁,因此一般为库的作者使用,提高库的多进程兼容性)
import sys
import multiprocessing as mp
def test():
print(id(x)
x = "1"
print(id(x))
if len(sys.argv)> 1:
mp. Set_method(sys.argv[1])
with mp Pool(2)as p:
p apply(test)
spawn无法将定义的东西比如上面的x读进去
用于解决spawn启动慢点问题
3.7以上才好用,,,不过用的少有一些平台不支持
python multiprocessing卡住的1w种方法
标签:queue python 启动慢 作者 toc nta 需要 test int
原文地址:https://www.cnblogs.com/kangshuaibo/p/14723308.html