Reputation: 3146
I'm producing an application with a few peculiar internal communication characteristics that make the usual suspects for data storage and transport (Qs and RDBMSs) ill-fitted. I'm wondering whether there is a product out there that matches the following characteristics:
I'm looking at things like Microsoft codename "Velocity", but I am not sure whether it fits all of the above characteristics. Likewise, Memcached is not a perfect fit either. The current version of this app opts for an RDBMS with a signaling system for inter-system sync, but latency is too high and versioning of the DB is a pain. I need all the robustness, but with none of the trade-offs.
Upvotes: 1
Views: 174
Reputation: 12589
Velocity/AppFabric will give you much of that, but I'm not sure it's what you want - it's designed to be complementary to a data store, not a replacement. It meets many of your needs, most notably scalability and redundancy (though for complete redundancy you'll need to pay out for Windows Server Enterprise), but there's no persistence mechanism or transactional support. You could perhaps write some extension methods for transactions but at that point it feels to me like you're fighting against the product, not working with it.
Bear in mind also that it's not expected to ship before Q3 this year and there is currently no go-live licence in Beta 2.
I suspect that memcached would suffer some of the same limitations too.
Upvotes: 1