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
Some parts of the data fetching code are horrifically slow because they're performed sequentially instead of asynchronously. The most notable holdouts are as follows:
Apple Music playlist fetching
Because the API prevents fetching full song lists as extensions of a call to the playlists endpoint when fetching multiple playlists, a new request has to be made for each playlist to get its track listings. This is currently done sequentially, but with a very minor lift these tasks could be performed in parallel.
The text was updated successfully, but these errors were encountered:
Some parts of the data fetching code are horrifically slow because they're performed sequentially instead of asynchronously. The most notable holdouts are as follows:
Apple Music playlist fetching
Because the API prevents fetching full song lists as extensions of a call to the playlists endpoint when fetching multiple playlists, a new request has to be made for each playlist to get its track listings. This is currently done sequentially, but with a very minor lift these tasks could be performed in parallel.
The text was updated successfully, but these errors were encountered: