Re: When should I use Solandra?

2011-06-04 Thread Kirk Peterson
I think the OP was asking if you can use the same Cassandra cluster that Solandra is integrated with to store non-Solandra in a different keyspace. This would remove the need to run two Cassandra clusters, one for storing his Solandra index, and another for his other data. I'm not sure if Solandra

Re: 0.8.0 thrift api?

2011-04-23 Thread Kirk Peterson
The best documentation (imo) for the Thrift API, is the cassandra.thrift file in the 'interface' subdirectory of the releas. Because cassandra.thrift is used to generate client bindings, it is always up to date, and usually well commented. The wiki lags behind, but sometimes will have more details

Re: Embedding Cassandra in Java code w/o using ports

2011-04-03 Thread Kirk Peterson
Not sure, but I've been playing with running cassandra in the same VM as an HTTP server for a pet project of mine, using a similar technique as the one found in the Solandra project. It does use ports on localhost, but hopefully gives you an idea of embedding cassandra (no clue if its a good idea