Track loading being deprecated in V4 #823
-
While preparing the migration for Lavalink V4 I stumbled upon the documentation indicating track loading being deprecated in V4. I know that we can load tracks more efficiently by using the PATCH player RESTful HTTP endpoint. Some users like to use queuing features for their music bots. It would be possible to implement this by only queuing the query and resolving it lazily later. However, we would lose functionality to implement showing previews of the track enqueued (as we do not know what the track is, before we play it). Will there be an alternativem or something similar in V4? ref: https://github.com/freyacodes/Lavalink/blob/dev/IMPLEMENTATION.md#track-loading |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You can already check the |
Beta Was this translation helpful? Give feedback.
-
Thank you for the quick response! I did not look at the v4 branch |
Beta Was this translation helpful? Give feedback.
/loadtracks?identifier=dQw4w9WgXcQ
is getting removed inv4
/v3/loadtracks?identifier=dQw4w9WgXcQ
is there to stay and/v4/loadtracks?identifier=dQw4w9WgXcQ
is getting addedYou can already check the
IMPLEMENTATION.md
on thev4
branch. There might be some minor stuff missing