Easy-Cassandra
Easy-Cassandra copied to clipboard
Automatic paging of query results
Does EasyCassandra support Cassandra 2.0's automatic paging model?http://www.datastax.com/dev/blog/client-side-improvements-in-cassandra-2-0
If not, what's the recommended way to handle large result sets?
I could use the Select builder: http://goo.gl/ghrWAc
From what I can see, SelectBuilder returns a List from a query. I assume this list currently includes all results. The underlying DataStax API returns a ResultSet which now supports automatic paging. Could SelectBuilder return this object or its own cursor, so large result sets can be handled easily?