TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Thoughts on CouchDB vs. SimpleDB

6 pointsby Readmoreover 16 years ago
I've decided to use a document based DB for my next project but I'm still in the discovery phase when it comes to SimpleDB vs. CouchDB.<p>They both seem to offer the same type of functionality, although from my initial research it seems like SimpleDB has more traditional query options. Any thought from HN readers who have used either, or preferably both, of these products?

2 comments

jmahover 16 years ago
SimpleDB is a service, whereas CouchDB stands alone. So you can install CouchDB locally, mess around with it and hack on the source.<p>Aside from that, CouchDB has views, which add another layer of indirection when reading the data. You break your data up into separate documents, where each doc is a collection of values that should be updated together (atomically). Then you use views to transform your docs to the way your data is displayed. (For example, you could store a blog post and each comment as separate documents, and have a view that returns a post and all its related comments together.) SimpleDB doesn't have this complexity.
评论 #392453 未加载
alexkayover 16 years ago
Great question! I would also like to know how these two compare to Google's BigTable?