AFAIK there is no way to get a list of the super columns, without also getting the sub columns. I do not know if there is a technical reason that would prevent this from being added. In general it's more efficient to make 1 request that pulls back more data, than two or more than pull back just eno
Hi,
I have a cassandra datastore as follows:
key:{
supercol (utf8) : {
subcol (timuuid) : data
}
}
Now, for a particular usecase I want to do slice on 2 levels. Firstly
on supercols & then from the selected supercols results slice subcols
(mostly to restrict no of items fetched in mem). I ha