可以将concurrent.futures(ProcessPoolExecutor)与pathos一起使用吗?
问这个,因为当我尝试使用时:
with concurrent.futures.ProcessPoolExecutor() as executor:
... executor.map()
我会得到:
PicklingError:无法挑选:属性查找 内置。功能失败
我知道我们可以使用pathos.multiprocess来代替默认的多进程,并解决一些像这样的问题,问题是当我尝试用期货实现并行处理时,我无法设置解决方案来修复与悲惨的腌渍错误。
任何想法?
感谢。