[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.

docs: Remove example of caching for transform best practices

Example is already in the main cache configuration docs. Consolidate/remove the transform example so there is only one authorative example in the docs.

FoxxMD (Jun 1, 2026, 5:30 PM UTC) f47faabf 120e280f

-33
-33
docsite/docs/configuration/transforms/transforms.mdx
··· 593 593 594 594 **If you are using any Transform stages you should configure [secondary caching](/configuration#secondary-caching)** to increase the cache size and lifetime of cached items. This will also reduce memory usage in MS. 595 595 596 - <details> 597 - 598 - <summary>Example</summary> 599 - 600 - Add valkey service to your [multi-scrobbler docker compose stack](/installation?runType=docker-compose#docker) and configure MS to use it for metadata: 601 - 602 - ```yaml title="docker-compose.yml" 603 - services: 604 - multi-scrobbler: 605 - image: foxxmd/multi-scrobbler 606 - # ... 607 - environment: 608 - # ... 609 - // highlight-start 610 - - CACHE_METADATA=valkey 611 - - CACHE_METADATA_CONN=redis://valkey:6379 612 - // highlight-end 613 - # ... 614 - 615 - // highlight-start 616 - valkey: 617 - image: valkey/valkey 618 - volumes: 619 - - valkeydata:/data 620 - 621 - volumes: 622 - valkeydata: 623 - driver: local 624 - // highlight-end 625 - ``` 626 - 627 - </details> 628 - 629 596 ## Examples 630 597 631 598 See **Examples** sections in specific Stage docs (also in the sidebar):