2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-04 10:00:48 +00:00
restic/changelog/0.12.0_2021-02-14/pull-3130

14 lines
566 B
Plaintext
Raw Normal View History

2020-12-19 10:38:38 +00:00
Enhancement: Parallelize reading of locks and snapshots
2020-12-06 04:28:15 +00:00
Restic used to read snapshots sequentially. For repositories containing
many snapshots this slowed down commands which have to read all snapshots.
2020-12-06 04:28:15 +00:00
Now the reading of snapshots is parallelized. This speeds up for example
`prune`, `backup` and other commands that search for snapshots with certain
properties or which have to find the `latest` snapshot.
2020-12-19 10:38:38 +00:00
The speed up also applies to locks stored in the backup repository.
2020-12-06 04:28:15 +00:00
https://github.com/restic/restic/pull/3130
2020-12-19 10:38:38 +00:00
https://github.com/restic/restic/pull/3174