Filter RSS entry with multiple keywords and "deduplicate" entries

The issue is that you were calling the “Get RSS Feed Items” module multiple times per unique RSS feed.

First you should aggregate (group by RSS feed URL).

Then this way you will only call the RSS module a total of 2 times instead of 20 times.

Then you can filter by a pattern of keywords (the keywords were aggregated into an array)

3 Likes