Suppose there is a large number of small files.
How can I quickly copy them from one place to another?
Will concurrency give any benefit?
Suppose there is a large number of small files.
How can I quickly copy them from one place to another?
Will concurrency give any benefit?
If you have a spindle drive, then multithreading can, on the contrary, slow down the process, since the disk will constantly position the head while serving the threads in turn.
I will not say for SSD, but the narrow-minded logic suggests two options: 1) There will be a benefit. 2) There will be no benefit, but there will be no drawdown either.
Option with local archiving (without compression for example) and the subsequent transfer of the archive is not considered?
Source: https://ru.stackoverflow.com/questions/558021/
All Articles