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 ArinSarkissian:
http://wiki.apache.org/cassandra/ThriftInterface

------------------------------------------------------------------------------
  Some examples on our table:
  
  {{{ 
- > ./Cassandra-remote -h <hostname>:<ThriftPort> get_column 'users' '1' 
'base_attributes:age' 
+ > ./Cassandra-remote -h <hostname>:<ThriftPort> get_column 'users' '1' 
"ColumnPath('base_attributes', None, 'age')" 
  {'columnName': 'age', 'value': '25', 'timestamp': 0}
- > ./Cassandra-remote -h <hostname>:<ThriftPort> get_column 'users' '1' 
'edges:friends:2' 
+ > ./Cassandra-remote -h <hostname>:<ThriftPort> get_column 'users' '1' 
"ColumnPath('edges', 'friends', '2')" 
  {'columnName': '2', 'value': '1', 'timestamp': 0}
  }}} 
  
@@ -106, +106 @@

  == remove ==
  
  {{{ 
- > ./Cassandra-remote -h <hostname>:<ThriftPort> remove 'users' '1' 
'base_attributes:email'
+ > ./Cassandra-remote -h <hostname>:<ThriftPort> remove 'users' '1' 
"ColumnPath('base_attributes', None, 'email')"
  None
- > ./Cassandra-remote -h <hostname>:<ThriftPort> get_column 'users' '1' 
'base_attributes:email'
+ > ./Cassandra-remote -h <hostname>:<ThriftPort> get_column 'users' '1' 
"ColumnPath('base_attributes', None, 'age')" 
  {'columnName': 'email', 'value': '', 'timestamp': 0}
  }}} 
  

Reply via email to