Given I have one row in Cassandra with multiple columns that have an Integer as key and some value. Using SliceQuery in Hector gives me the ability to get one range of this columns. Is there a possibility to get multiple ranges with one query?
Example cassandra row:
columns 3, 7, 12, 34, 45, 46, 59, 98, 99
----------------------------------------
values a, f, e, v, a, r, r, o, k
How do I use Hector to get all columns with keys from 20 to 30 and 50 to 90 in one query?