You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default UPDATE_RATE limit of 4 seconds for Plex library scans is too excessive, especially for larger libraries.
Considering just a Movies library with 71824 items and the default bundleSize of 50, it would spend ~96 minutes (~1.6 hours) just sleeping: (((71824 / 50) * 4) / 3600 = ~1.6)
Looks like this was necessary due to the initial inefficient implementation of the scanner and can be reduced now.
Desired Behavior
Reduced default limit and an advanced setting so that it can be overridden by the users.
Description
The default
UPDATE_RATE
limit of4
seconds for Plex library scans is too excessive, especially for larger libraries.Considering just a Movies library with
71824
items and the default bundleSize of50
, it would spend~96
minutes (~1.6
hours) just sleeping:(((71824 / 50) * 4) / 3600 = ~1.6)
Looks like this was necessary due to the initial inefficient implementation of the scanner and can be reduced now.
Desired Behavior
Reduced default limit and an advanced setting so that it can be overridden by the users.
Additional Context
Discord Thread for the Discussion: https://discord.com/channels/783137440809746482/1063925700505120882
Code of Conduct
The text was updated successfully, but these errors were encountered: