2024-07-22 22:19:22 +00:00
|
|
|
Enhancement: Optimize and make `prune` command resumable
|
2024-05-19 21:50:40 +00:00
|
|
|
|
2024-07-22 22:19:22 +00:00
|
|
|
Previously, if the `prune` command was interrupted, a later `prune` run would
|
|
|
|
start repacking pack files from the start, as `prune` did not update the index
|
|
|
|
while repacking.
|
2024-05-19 21:50:40 +00:00
|
|
|
|
|
|
|
The `prune` command now supports resuming interrupted prune runs. The update
|
2024-07-22 22:19:22 +00:00
|
|
|
of the repository index has also been optimized to use less memory and only
|
2024-05-19 21:50:40 +00:00
|
|
|
rewrite parts of the index that have changed.
|
|
|
|
|
|
|
|
https://github.com/restic/restic/issues/3806
|
|
|
|
https://github.com/restic/restic/pull/4812
|