
Scheduler (recommended)
- Go to System > Scheduler > Add Task
- Select ‘Update RSS feeds’ and set it to ‘Recurring’
- Set the frequency (e.g.
*/30 * * * *) and the cache lifetime (e.g.3600) - Click the play icon to test
CLI
vendor/bin/typo3 mpcrss:updatefeeds
vendor/bin/typo3 mpcrss:updatefeeds --clear-cache
vendor/bin/typo3 mpcrss:updatefeeds --cache-lifetime=7200
As a crontab entry:
*/30 * * * * cd /path/to/typo3 && vendor/bin/typo3 mpcrss:updatefeeds
Cache isolation
The RSS cache (mpc_rss) is independent of the page and system caches:
| Action | RSS cache | Page/System cache |
|---|---|---|
| Scheduler/CLI runs | Updated | Unchanged |
| Clear page cache | Unchanged | Deleted |
cache:flush --group=mpc_rss | Deleted | Unchanged |