Break-up album/artist refresh in chunks

This commit is contained in:
Deluan 2020-09-09 08:57:59 -04:00
parent ba30f7f8be
commit 841c1129ff
3 changed files with 25 additions and 3 deletions

View file

@ -115,6 +115,17 @@ func (r *artistRepository) GetIndex() (model.ArtistIndexes, error) {
}
func (r *artistRepository) Refresh(ids ...string) error {
chunks := utils.BreakUpStringSlice(ids, 100)
for _, chunk := range chunks {
err := r.refresh(chunk...)
if err != nil {
return err
}
}
return nil
}
func (r *artistRepository) refresh(ids ...string) error {
type refreshArtist struct {
model.Artist
CurrentId string