Thanks, this client library is really great! It should be included in the
Apache Cassandra Wiki's "High level clients" page (
http://wiki.apache.org/cassandra/ClientOptions).
Anyway, here is the code I created (using the cassandra-driver-core Maven
artifact).
Cluster cluster = Cluster.builder().ad
I would advise you not to use raw thrift. It's just a low-level transport
as far as CQL3 is concerned, and what you will get is binary encoded data
that you will have to decode manually. Use a client library (like
https://github.com/datastax/java-driver) that will do that for you.
Though to answer