cassandraの特徴

http://ja.scribd.com/doc/25148233/WTF-is-a-Super-Column

1. データの最小単位はcolummで、つまりはtuple( name, value, timestamp) である。python でいう dict やね。
2. Column Family はStandard と、Superの二種類ある。
Standardは
Employee{
'takashi' : {
age : 30
, department : 'sale'
, salary : 100M
}
, 'hitomi' : {
age : 32
, department : 'dev'
, salary : 120M
, 'email' : xxx@xx.xx
}

みたいな、かんじ。columnはいくらでも付け足せるのが特徴

Superはそれに、もう一段階ネスとしたみたいな感じで、

Employee{
'regular' : {
'hashimoto' : {
'joined_year' : 1990
, 'department' : 'purchase'
, contact : 090-xxx-xxx
}
, 'nishio' : {
'joined_year' : 1990
, 'department' : 'dev'
, contact : 090-xxx-xxx
}
'contractor' : {
'tamada' : {
'joined_year' : 2009
, 'department' : 'HR'
, contact : 090-xxx-xxx
}
, 'cathy' : {
'joined_year' : 2012
, 'department' : 'sale'
, contact : 090-xxx-xxx
}
}


3. ソートはデータを挿入したときにされる。

4, Columns are always sorted within their Row by the Column's name. This is important