-
This paper https://www.w3.org/TR/NOTE-gdiff-19970825.html I wanted to see how efficient the rsync algorithm is so I ran
Is there some way to output the gdiff for the transfer? My end goal is to cross-check that the javaxdelta is functioning correctly and efficiently. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
One thing you can do with a default rsync is to use |
Beta Was this translation helpful? Give feedback.
One thing you can do with a default rsync is to use
--debug=deltasum2
or higher on the transfer and then sift through the info of the chunk data. It only gives you file offsets for what matched and (for higher levels) how much literal data was received, so an additional tool would need to transform that info into some kind of diff using the original files. You could also tweak the source in receiver.c if you wanted to make it output the file data that it is manipulating into an additional diff stream.