Skip to content

Instantly share code, notes, and snippets.

@zznate
Created February 27, 2012 22:39
Show Gist options
  • Save zznate/1927634 to your computer and use it in GitHub Desktop.
Save zznate/1927634 to your computer and use it in GitHub Desktop.
Cassandra cassandra = new Cassandra();
Keyspace keyspace = cassandra.getKeyspace("MyKeyspace");
ColumnFamily columnFamily = keyspace.getColumnFamily("Users");
Row row = new Row()
.put("username", "zznate")
.put("email","[email protected]")
.increment("hits",1);
columnFamily.insert(row);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment