What's the point of using Amazon SimpleDB?

前端 未结 9 2123
礼貌的吻别
礼貌的吻别 2021-01-29 22:12

I thought that I could use SimpleDB to take care of the most challenging area of my application (as far as scaling goes) - twitter-like comments, but with location on top - till

9条回答
  •  离开以前
    2021-01-29 23:06

    I'm building a commericial .NET application which will use SimpleDB as its primary data store. I'm not yet in production, but I've also been building out an open-source library that addresses some of the issues with using SimpleDB vs an RDBS. Some of the features on my roadmap are related to the issues you've mentioned:

    • Transparent partitioning of data
    • Pseudo transactionality
    • Transparent spanning of attributes to surpass the 1000 byte limit

    SimpleDB is still under active development and will certainly end up with many features it doesn't have today (some added to the core system and some in the code libraries).

    The .NET library is Simple Savant.

提交回复
热议问题