index: Lower parallel load to 4

This commit is contained in:
Alexander Neumann 2018-01-26 21:10:38 +01:00
parent f63c7048c7
commit 6eb2d76435
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ func (r *Repository) SaveFullIndex(ctx context.Context) error {
return r.saveIndex(ctx, r.idx.FullIndexes()...)
}
const loadIndexParallelism = 20
const loadIndexParallelism = 4
// LoadIndex loads all index files from the backend in parallel and stores them
// in the master index. The first error that occurred is returned.