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.
|
2021-02-13 23:57:54 +00:00
|
|
|
|
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
|