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.
···593593594594**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.
595595596596-<details>
597597-598598-<summary>Example</summary>
599599-600600-Add valkey service to your [multi-scrobbler docker compose stack](/installation?runType=docker-compose#docker) and configure MS to use it for metadata:
601601-602602-```yaml title="docker-compose.yml"
603603-services:
604604- multi-scrobbler:
605605- image: foxxmd/multi-scrobbler
606606- # ...
607607- environment:
608608- # ...
609609- // highlight-start
610610- - CACHE_METADATA=valkey
611611- - CACHE_METADATA_CONN=redis://valkey:6379
612612- // highlight-end
613613- # ...
614614-615615- // highlight-start
616616- valkey:
617617- image: valkey/valkey
618618- volumes:
619619- - valkeydata:/data
620620-621621-volumes:
622622- valkeydata:
623623- driver: local
624624- // highlight-end
625625-```
626626-627627-</details>
628628-629596## Examples
630597631598See **Examples** sections in specific Stage docs (also in the sidebar):