can anyone suggest how to process files parallel, please?
right now I can hash/checksum files but already processed files wait for first task to finish.
Lets say you have enough I/O to process more.
How do I write following algorithm:
hash/checksum files + copy what is already checksummed (parallel) - basically, two processes running hash + copy
I do not know how to explain, hopefully you understand.
I have already written program in Python but wonder how can I write parallel version of this program.
Regards
David