Cache not clearing with use of getFeed

Cache does not appear to be clearing with use of getFeed (Modx Revolution 2.8.3-pl). Though the RSS feed is updating at the URL used in the ‘url’ parameter, web content has not updated accordingly with use of Snippet call as shown below. Replacing URL with a different URL does not always update web content after saving. Is there a specific format that the URL must follow for the cache to clear? Are query strings allowed in the URL as in the example below? Is https (vs. http, as used in documentation) acceptable?

[[!getFeed? &url=`https://path.com/to/my/events/event/?feed=feed` &tpl=`RSSFeedParser`]]

(I edited your post so that the back-ticks would show up in your tag.)

It appears that this issue has been around for a while. Offhand, I don’t see a good way around it, but you might be able to do something like this:

[[!getFeed? &url=`https://path.com/to/my/events/event/?feed=feed[[BustCache]]` &tpl=`RSSFeedParser`]]
?php
/* BustCache Snippet */
return ' &x=' .  time() . ' ';

I don’t think it will work, since the feed software appears to have its own cache.