Where can logs containing scrobble information be found?

BTW @elan unrelated but since you are here I try :slight_smile: Is there some hidden parameters to requests like library/sections/2/all?X-Plex-Container-Start=1000&X-Plex-Container-Size=1000&type=9 to return more data like Mood or Styles without having to do a request per album / artist ?

Generally on the /all requests we don’t return the expensive data, so if you want to display a second line e.g. with that in a grid you’d need to issue an extra request per item (which might not be expensive as long as you have a virtualized list).

Thing is that Symfonium is offline first multi provider so have it’s own DB and work from it.
I optionally allow users to fill all data via individual item queries but it’s really slow for large collections.
I’ll keep doing that if no choice and hidden hacks :frowning:
Thanks for the confirmation.

Edit: Hum test account logged on phone :slight_smile:

You could fault the data into the database as needed, but I agree, it’s slow if you want to essentially sync all the data into an offline database.

SQLite?

SQLite yes, but the issue is really just the number of required queries with the http overhead and network latency. Plex is quite fast but this is the limiting factor.

But I understand that none of Plex apps are offline first so do not need full data sync so that’s it’s out of scope.

If one day this change, please leave a note in the changelog :slight_smile:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.