[Fixed]-Python multiprocessing not reducing processing time much

1👍

From the code you show I see that you apply some function to something called file_list, so it looks like in your function you work with files. In this case I would guess that your code is spending most time doing I/O, and its performance is limited by your hard drive speed, not by the number of cores.

👤avysk

Leave a comment