I wrote a program that fetch the userplaylist, the problem is with the loading time which is very high (around 20sec) is there another approach about loading those playlist(userplaylists) ? i used SPASYNCLOAD to load the container then another SPASYNCLOAD to load the user flatten playlists. the second SPASYNCLOAD is taking too much time. any ideas?
Asked
Active
Viewed 84 times
1 Answers
0
Playlists will take a long time to load, especially on the first login when there's no cache. Loading all of the playlists at once actually isn't recommended, because if the user has a lot of playlists you need to be careful about memory usage.
The approach you're doing is the correct way to load all the playlists, though. It taking time is expected.

iKenndac
- 18,730
- 3
- 35
- 51
-
so basically the loading the container without loading the flatten playlists / playlists will end up with nulls playslits? – Gilad Jul 31 '13 at 06:09
-
oh.. and on more thing when i'm loading the flatten playlists does it loading the SPTRACK that inside them or only the wrap (SPPlaylist)? – Gilad Jul 31 '13 at 06:10