forked from TrueCloudLab/restic
91906911b0
- The SaveBlob method now checks for duplicates. - Moves handling of pending blobs to MasterIndex. -> also cleans up pending index entries when they are saved in the index -> when using SaveBlob no need to care about index any longer - Always check for full index and save it when storing packs. -> removes the need of an index uploader -> also removes the verbose "uploaded intermediate index" messages - The Flush method now also saves the index - Fix race condition when checking and saving full/non-finalized indexes
8 lines
352 B
Text
8 lines
352 B
Text
Enhancement: Optimize repository implementation
|
|
|
|
We've optimized the implementation of handling index entries in the repository.
|
|
|
|
Restic now uses less memory for backups which add a lot of data, e.g. large initial backups.
|
|
Also it is more stable in some edge situations and allows easier future enhancments.
|
|
|
|
https://github.com/restic/restic/pull/2773
|