I am building a small news aggregator app (java/angularjs) with a DB. It relies on storing the contents of a group of RSS feeds in the DB for historical search/sort/comments, and needs to stay up-to-date for breaking news. To stay up to date, the database will need to run at least one DB "put" fairly frequently, like once every 10 minutes. I think this would result in pretty much 100% uptime for that instance.
Do I understand correctly that, even at the cheapest DB option (.025/hour), it would cost basically .025*24*30 = 18$ a month for the DB alone? This seems pretty steep for a fairly small app, doesn't it? Am I overlooking some option? I admit that I don't really understand the datastore option too well.
Thanks very much,
-Keith