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
Right now, the get_library function waits until it has the whole library to display it to the user, freezing the rendering in the process. This is fine for small libraries, but testing with my almost 700 tracks library makes it freeze for 10 to 15 seconds before anything happens after the library command runs.
The solution to this is paginating the command, so we fetch a fixed number of tracks from the library and fetch more when the user starts approaching the end of the current page's list/
The text was updated successfully, but these errors were encountered:
Right now, the
get_library
function waits until it has the whole library to display it to the user, freezing the rendering in the process. This is fine for small libraries, but testing with my almost 700 tracks library makes it freeze for 10 to 15 seconds before anything happens after thelibrary
command runs.The solution to this is paginating the command, so we fetch a fixed number of tracks from the library and fetch more when the user starts approaching the end of the current page's list/
The text was updated successfully, but these errors were encountered: