Re: A few questions about Cassandra's native protocol

2012-08-22 Thread Christoph Hack
On Wed, Aug 22, 2012 at 11:00 PM, Rob Coli wrote: > FWIW, while I suppose a client author is technically a "user" of > Cassandra, you appear to be making suggestions related to the > development of Cassandra. As I understand the conceptual seperation > between lists, you probably want to send such

Re: A few questions about Cassandra's native protocol

2012-08-22 Thread Christoph Hack
4. Prepared Statements It should be possible to prepare statements that do not take any arguments. This simplifies the client development significantly (otherwise everybody has to write his own parser to determine the number of arguments) and might also speed up common queries. The current impleme

A few questions about Cassandra's native protocol

2012-08-21 Thread Christoph Hack
Hi, I am currently developing a client for Cassandra's new native protocol in Go. Everything is working fine so far and I am quite happy with the new protocol. Good work! Here a just a couple of questions and notes: 1) The native_protocol.spec should probably mention that it is based on TCP. I gr