1
Phant0m 2018-12-24 22:39:35 +08:00 via iPhone
mulitprocessing 不是多进程吗
|
2
leavic 2018-12-24 22:39:41 +08:00
threading?
|
3
lance6716 2018-12-24 23:32:17 +08:00
同求
|
4
Seahurt 2018-12-25 07:15:43 +08:00 via iPhone 2
multiprocessing.dummy 提供了跟调用进程类似的调用线程的接口,底层还是基于 threading。py3.6 提供给了 concurrent 包,提供了更易于使用的多进程和多线程的功能,具体看官方文档
|
5
fankcoder 2018-12-25 14:38:06 +08:00
from concurrent.futures import ThreadPoolExecutor
from concurrent.futures import ProcessPoolExecutor |
6
zhucegeqiu 2018-12-25 17:33:57 +08:00
多线程 or 进程?多进程运算我一般用 dask
|
7
yzc27 2018-12-27 09:09:53 +08:00
concurrent.futures
|