restic/changelog/0.12.0_2021-02-14/pull-3130

14 lines
566 B
Plaintext
Raw Normal View History

2020-12-19 11:38:38 +01:00
Enhancement: Parallelize reading of locks and snapshots
2020-12-06 05:28:15 +01: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 05:28:15 +01: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 11:38:38 +01:00
The speed up also applies to locks stored in the backup repository.
2020-12-06 05:28:15 +01:00
https://github.com/restic/restic/pull/3130
2020-12-19 11:38:38 +01:00
https://github.com/restic/restic/pull/3174