Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to learn more about NoSQL as I'm building a key-based archiving app in a Linux/PHP architecture. Can anyone explain the differences between the major solutions (CouchDB/MongoDB/etc) as to the advantages/disadvantages to each? Links would be great, though I'm having a hard time doing research using Google alone.

share|improve this question
Does your question require that the solution has a PHP interface, cause the "php" tag is irrelevant with the provided answers. – user327961 Sep 26 '11 at 18:02

7 Answers

up vote 8 down vote accepted

google "nosql comparison" - there are really tons of related blogs and docs.

Here is one: http://kkovacs.eu/cassandra-vs-mongodb-vs-couchdb-vs-redis

share|improve this answer
everything I've found has been random. I was looking for a generality of each one, like a table mapping/comparison – wajiw Feb 10 '11 at 19:39
1  
@wajiw: See the edit to this answer. – Robert Harvey Feb 10 '11 at 20:12
@robert that's awesome, thanks! – wajiw Feb 10 '11 at 20:14
thanks for the help guys. I'm going to try and convert this question to a wiki with input from this link and a couple others I've found – wajiw Feb 11 '11 at 21:07
great link! short and concise bullet point lists for the comparisons. Excellent starting point :) – oma Apr 10 '11 at 11:30

This link compares several databases with respect to their features:

http://www.vineetgupta.com/category/databases/

share|improve this answer

This link has some information about nosql systems.

http://www.rackspacecloud.com/blog/2009/11/09/nosql-ecosystem/

share|improve this answer
1  
just want to point out that this is over a year old and written by a core contributor to cassandra. I think all of the solutions in the space have evolved significantly since then. – mstearn Feb 11 '11 at 0:59

Take a look at this nosql comparison engine. http://nosql.findthebest.com

share|improve this answer

Some bloguer posted a visual answer to this question about a month after this question was posted on stackoverflow.

Interesting since it positionned the different available solutions in reference to the CAP theorem.

I would just add that Cassandra can fit on both sides of 'P' depending if you always query using quorum or not.

http://blog.nahurst.com/visual-guide-to-nosql-systems

Note : The author arbitrary put RDBMS and data-warehousing solutions on the CA side of the triangle. I know an available non partition-tolerant is controversial, but that's not the point.

share|improve this answer

here is a comparison of MongoDB, Cassandra, Riak, CouchBase 2.0, HBase distributed on HDFS using ZooKeeper, Berkeley db 11g (java Ed HA) and Oracle NoSQL 11g

The author has basically gone through all their documentations and quoted the areas that describe their behavior in the following 5 categories:

  • Internal partitioning
  • Automated flexible data distribution
  • Hot swappable nodes
  • Replication-style
  • Automated failover strategy

and then provided short quotes for each of the them.

see: http://www.kammerath.co.uk/nosql-on-the-spot.html

share|improve this answer

NoRAM DB => “If It Does Not Fit in RAM, I Will Quietly Die For You”

Talks about Cassandra, Riak, Redis, MongoDB, Hazelcast, Neo4j, VoltDB, CouchDB, and others.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.