You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by Apache Wiki <wi...@apache.org> on 2011/10/05 15:01:28 UTC

[Cassandra Wiki] Trivial Update of "FAQ" by Adrien Rivard

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.

The "FAQ" page has been changed by Adrien Rivard:
http://wiki.apache.org/cassandra/FAQ?action=diff&rev1=135&rev2=136

  <<Anchor(cli_keys)>>
  
  == Why does the 0.8 cli not assume keys are strings anymore? ==
- Prior to 0.8, there was no type metadata available for row keys, and the cli interface treated all keys as strings.  This made the cli unusable for the many applications whose rows were numberic, uuids, or other non-string data.
+ Prior to 0.8, there was no type metadata available for row keys, and the cli interface treated all keys as strings.  This made the cli unusable for the many applications whose rows were numeric, uuids, or other non-string data.
  
  0.8 added key_validation_class to the !ColumnFamily definition, similarly to the existing comparator for column names, and column_metadata validation_class for column values.  This both lets clients know the expected data type, and rejects updates with non-conformant values.