Column-family concept and data model
I'm investigating the different types of NoSQL database types and I'm trying to wrap my head around the data model of column-family stores, such as Bigtable, HBase and Cassandra. First model Some people describe a column family as a collection of rows , where each row contains columns [ 1 ], [ 2 ] . An example of this model (column families are uppercased): { "USER": { "codinghorror": { "name": "Jeff", "blog": "http://codinghorror.com/" }, "jonskeet": { "name": "Jon Skeet", "email": "jskeet@site.com" } }, "BOOKMARK": { "codinghorror": { "http://codinghorror.com/": "My awesome blog", "http:/