What's the point of using Amazon SimpleDB?

前端 未结 9 2124
礼貌的吻别
礼貌的吻别 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 22:52

    Amazon is trying to get you to implement a simple object database. This is primarily for speed reasons. Think of the SimpleDB records as being a pointer/key to an element in S3. This way you can run queries (slow against SimpleDB to get results lists or you can directly hit S3 with a key (fast) to pull the object when you need to retrieve or modify records one-at-a-time.

提交回复
热议问题