Re: Connection Pooling

2009-10-05 Thread Igor Katkov
As Jonathan Ellis points out one might use common-pool If you also use Spring it makes it very easy to configure, so there are no need to code it yourself. Here is an example Where "cassandraClientTarget" is bean id of your Cassandra client class,

Re: Connection Pooling

2009-10-03 Thread Mark McBride
If you're looking for a concrete example, you can probably transliterate the Scala example in Cassidy (http://github.com/viktorklang/Cassidy), which uses commons pooling. Or you could use Cassidy and get pooling for free. ---Mark On Sat, Oct 3, 2009 at 6:31 AM, Jonathan Ellis wrote: > It woul

Re: Connection Pooling

2009-10-03 Thread Jonathan Ellis
It would be pretty easy to create one with http://commons.apache.org/pool/. If your number of ops-per-connection is already high then pooling is a lower priority. On Sat, Oct 3, 2009 at 5:46 AM, Johannes Schaback wrote: > Hi! > > Just a quick question out of curiosity; is it necessary/sesnsible

Connection Pooling

2009-10-03 Thread Johannes Schaback
Hi! Just a quick question out of curiosity; is it necessary/sesnsible to use a connection pool if a larger number of clients want to connect to the same node? If yes, does Cassandra/thrift maybe already have a connection pool that I am unaware of? I found lazyboys Python Wrapper for Cassandra whi