Should I use CouchDB or SimpleDB? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T17:06:52Z http://stackoverflow.com/feeds/question/774329 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/774329/should-i-use-couchdb-or-simpledb 2 Should I use CouchDB or SimpleDB? unknown (yahoo) 2009-04-21T20:00:50Z 2009-07-09T08:14:19Z <p>I'm creating an application that will be hosted on amazon EC2 and a lot of the data that'll be saved is more document oriented (as well as saving tweets and such related to those documents). </p> <p>Right now I'm at a crossroads... should I use simpleDB or couchDB? Whats the pros/cons of using either? Should I just try both for a month and decide then?</p> http://stackoverflow.com/questions/774329/should-i-use-couchdb-or-simpledb/774354#774354 9 Answer by Rick Copeland for Should I use CouchDB or SimpleDB? Rick Copeland 2009-04-21T20:06:33Z 2009-06-30T12:26:29Z <p>You may find the the article <a href="http://www.automatthew.com/2007/12/amazon-simpledb-and-couchdb-compared.html" rel="nofollow">Amazon SimpleDB and CouchDB Compared</a> to be useful.</p> <p>I've also found that <a href="http://www.mongodb.org/display/DOCS/Home" rel="nofollow">MongoDB</a> gives excellent performance.</p> http://stackoverflow.com/questions/774329/should-i-use-couchdb-or-simpledb/774449#774449 5 Answer by Joel Mueller for Should I use CouchDB or SimpleDB? Joel Mueller 2009-04-21T20:28:04Z 2009-04-21T20:28:04Z <p>Keep in mind that if your code lives in EC2, SimpleDB will be presumably hosted in the same data center that your code is, which would give SimpleDB a lower latency than CouchDB for requests from an EC2 server. Also, Amazon doesn't charge you bandwidth costs between EC2 and SimpleDB.</p> <p>I would expect SimpleDB to be both faster and cheaper for code running in EC2, for those reasons.</p> http://stackoverflow.com/questions/774329/should-i-use-couchdb-or-simpledb/1102481#1102481 0 Answer by LucaM for Should I use CouchDB or SimpleDB? LucaM 2009-07-09T08:08:42Z 2009-07-09T08:08:42Z <p>I would absolutely do some benchmark of the two solutions with your own use-case, if that's possible, i.e. if you can build a reasonable subset of your application to run on either databases (they have quite different APIs so this might not be easy).</p> http://stackoverflow.com/questions/774329/should-i-use-couchdb-or-simpledb/1102497#1102497 1 Answer by Carl Hörberg for Should I use CouchDB or SimpleDB? Carl Hörberg 2009-07-09T08:14:19Z 2009-07-09T08:14:19Z <p>If you develop in .Net environment there's an excellent lib for SimpleDB called <a href="http://www.codeplex.com/SimpleSavant" rel="nofollow">Simple Savant</a> which really eases the integration.. </p>