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 following steps can take very long depending on the library's size:
fetching every saved track (long)
fetching every saved album along with their tracks (longer)
We can imagine caching these data into a small & simple SQLite database. Regarding the second step, we will still need to query the Spotify API to get a list of the saved albums, but only their tracks will be cached (this should drastically speed up this step).
The end-user will be able to pass the --no-cache option to disable caching.
The text was updated successfully, but these errors were encountered:
The following steps can take very long depending on the library's size:
We can imagine caching these data into a small & simple SQLite database. Regarding the second step, we will still need to query the Spotify API to get a list of the saved albums, but only their tracks will be cached (this should drastically speed up this step).
The end-user will be able to pass the
--no-cache
option to disable caching.The text was updated successfully, but these errors were encountered: