python 多处理中更多复合明智的对象共享
More compound wise object sharing in python multiprocessing
我可以共享复合对象吗? pandas python 多处理中并行进程之间的数据帧?
您可以尝试使用 multiprocessing.Manager,就像描述的那样 here。
还有 PySpark,它的 own dataframe structure 具有固有的并行化,它可以转换为 pandas,反之亦然。
我可以共享复合对象吗? pandas python 多处理中并行进程之间的数据帧?
您可以尝试使用 multiprocessing.Manager,就像描述的那样 here。
还有 PySpark,它的 own dataframe structure 具有固有的并行化,它可以转换为 pandas,反之亦然。