views:

137

answers:

1

If You would be Facebook, what nosql db would you use and to do what? I mean the real use cases where a NOSQL makes really an advantage

A: 

Facebook is using Cassandra, a distributed key-value database. The real advantaga with a distributed key-value database compared to a relational database is that it is easier to scale out. Usually it is hard to scale out a relational database.

Jonas