I am developing a web service that mainly returns C# datatables.
It currently caches the output results into memcached cluster which is refreshed by another cache updater based on the internal messages.
Since those caches don't expire, it is crucial to have good failover etc... As I go on with this, it gets quite difficult to ensure failover or reliable cache key control on this bare bone memcached cluster.
Also the scalability is becoming an important concern since this is going to be behind a large traffic portal.
So I am thinking if any cloud-based DB service (AWS SimpleDB, AWS MySQL or Azure?) can be a good candidate for this.
I was using AWS SimpleDB recently and it seems very good, if all you need is to dump large matrices of data. I was writing a script in python so I used the associated library and that lets you do things like:
It's not a relational database as you probably already know.