Hello.
I want to execute duplicacy check -chunks
on a relatively large repository. However, my computer regularly crashes. As duplicacy keeps a list of already verified chunks in .duplicacy/cache/storage/verified_chunks
, this would usually not be a problem, as duplicacy could resume the check process from where it ended on the previous crash.
However, duplicacy only writes to .duplicacy/cache/storage/verified_chunks
when the process is terminated regularly, but not when my computer crashes, which means that the list of already verified chunks is not persisted and progress is thus not saved.
This is why I propose to implement a feature, through which check progress is written to .duplicacy/cache/storage/verified_chunks
periodically, so that progress is preserved in case of computer crashes. For example, duplicacy could write .duplicacy/cache/storage/verified_chunks
each time after 1000*n chunks have been checked.
I’d appreciate your feedback in this regard. Best, Juri