Reputation: 505
Can you please tell me how spring-data-cassandra handle connection pooling? I am usring spring-data-cassandra 1.5.3
Upvotes: 3
Views: 4750
Reputation: 82000
In the Spring Data Cassandra documentations Java Configuration section, there is an example of a Java-based configuration, which creates a CassandraClusterFactoryBean
where you can set PoolingOptions
PoolingOptions
is a class from the DataStax driver, and its usage is described in the documentation of the driver.
Upvotes: 3