Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The following page has been changed by CurtMicol: http://wiki.apache.org/cassandra/CaseStudy1 ------------------------------------------------------------------------------ Our first case study is an example of how one would structure the schema for a Delicious clone. We'll also provide some examples of 'insert'ing and 'get'ing data. Here's our schema: + {{{ <Keyspace Name="DeliciousClone"> <KeysCachedFraction>0.01</KeysCachedFraction> <ColumnFamily CompareWith="UTF8Type" Name="Users"/> @@ -13, +14 @@ <ColumnFamily CompareWith="UTF8Type" Name="UserTags"/> <ColumnFamily CompareWith="UTF8Type" CompareSubcolumnsWith="TimeUUIDType" ColumnType="Super" Name="UserBookmarks"/> </Keyspace> + }}} == More to come ==
