Increase batch size for library sync from 500 to 2000 to increase sync speed

This commit is contained in:
croneter 2019-11-13 17:53:46 +01:00
parent 938b82da9c
commit 7a8cec5968

View file

@ -19,7 +19,7 @@ if common.PLAYLIST_SYNC_ENABLED:
LOG = getLogger('PLEX.sync.full_sync')
# How many items will be put through the processing chain at once?
BATCH_SIZE = 500
BATCH_SIZE = 2000
# Safety margin to filter PMS items - how many seconds to look into the past?
UPDATED_AT_SAFETY = 60 * 5
LAST_VIEWED_AT_SAFETY = 60 * 5