Merge pull request #3130 from aawsome/snapshots-parallel

Make loading snapshots parallel
This commit is contained in:
Alexander Neumann
2020-12-06 21:08:18 +01:00
committed by GitHub
7 changed files with 129 additions and 120 deletions

View File

@@ -0,0 +1,9 @@
Enhancement: Parallelize reading of snapshots
Restic used to read snapshots sequentially. For repositories containing
many snapshots this slowed down commands which have to read all snapshots.
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.
https://github.com/restic/restic/pull/3130