projects/orleans/rss-reader-3/README.md
This sample requires redis. Make sure to run FLUSHALL in redis-cli between samples.
This is a simple RSS reader that uses two storage, one for storing a feed source and another for storing feed results. You can keep refreshing your browser and the RSS Reader will display the latest results whenever they are available. It also logs the result of every RSS feed that got fetch regularly using Orleans reminder.
dotnet run.localhost:5000In this RSS feed we use a single Reminder grain to handle all the reminders created for each feed. An alternative approach would be to use one Reminder grain per Reminder (this is demonstrated in another sample RSS Reader with Reminder + Subscription list 2).