Cassandra , Hector :how to retrieve specific set of columns for specific keys from a column family in 1 call?

Viewed 164

If there are row keys List rowkeys and for every row key i want some specific set of columns , for some row keys columns might be different and for some row keys they might be different.

How can i do it in Hector ?

mutliget_slice methods requires keys to be in range plus it does not allow 
different ranges for different keys too.

I am not able to find any relevant Hector class which fulfils this requirement of multiget

EDIT:-

I could not find any way , currently i am using mutliget_slice with combined list of columns for all keys and then filtering

1 Answers
Related