我正在使用'multiprocess.Pool.imap_unordered'如下
from multiprocessing import Pool
pool = Pool()
for mapped_result in pool.imap_unordered(mapping_func, args_iter):
do some additional processing on mapped_result
我需要打电话pool.close
或pool.join
之后的for循环?
pool.join()
那么pool.close()
,一旦我开始所有池中的线程,但使用我还没有尝试过pool.imap_unordered()
作为一个迭代。