Re: get_indexed_slices count api

2011-06-01 Thread aaron morton
select count(*) from table where column1 = v1 and ..., based on a secondary index on column1. But using get_indexed_slices(), I have to fetch all the rows and count on them, which is not needed. So a get_indexed_slices count api [1] would be very helpful, but it seems no one is working

get_indexed_slices count api

2011-05-31 Thread Donal Zang
Hi, I'm query on cassandra like select count(*) from table where column1 = v1 and ..., based on a secondary index on column1. But using get_indexed_slices(), I have to fetch all the rows and count on them, which is not needed. So a get_indexed_slices count api [1] would be very helpful