|
|
|
|
|
by lysium
4294 days ago
|
|
> The problem with rsync is that it would have to traverse all the FS tree and check every single file on both sides for the timestamp and the file. - In this scenario, the receiving side is empty, so there is no need to check every single file. - Since 3.0, rsync walks the dirtree while copying (unless you use some special options). So, in some sense, rsync is already "deep syncing inside the FS tree", as you put it. |
|