[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

refactor: Decrease persist interval to 10 seconds

Faster interval means less likely user will update queue and exit MS before cache is saved

FoxxMD (Sep 11, 2025, 7:14 PM UTC) 0a673fd3 fd316a8e

+2 -2
+2 -2
src/backend/common/Cache.ts
··· 171 171 lruSize: 2000, 172 172 cacheDir: opts.cacheDir ?? configDir, 173 173 cacheId: opts.cacheId ?? 'scrobble.cache', 174 - persistInterval: 1 * 1000 * 60, 175 - expirationInterval: 1 * 1000 * 60, // 1 minute 174 + persistInterval: 1 * 1000 * 10, 175 + expirationInterval: 1 * 1000 * 10, // 10 seconds 176 176 ...opts 177 177 }); 178 178 }