views:

163

answers:

1

What does going with a document based NoSQL option buy you over a KV store, and vice-versa?

A: 

The biggest difference is that a document-oriented database supports secondary indexes, K/V does not. In general, document-oriented dbs tend to allow richer queries, allowing things like range queries, sorting, and other types of "advanced" operations.

mdirolf
Cassandra will support secondary indices in the next release (0.7)
Schildmeijer