anyone know how to lookup non-continguous columns BUT for prefixes?

2012-09-04 Thread Hiller, Dean
I have a row that is an index like so Index row - value1.pk99, value1.pk20, value2.pk32, value2.pk7 , value3.pk24, value4.pk54, value5.pk31 I would like to get all of the pks for value2 which are pk32 and pk7 And value4 which are pk54 This is a trimmed down example of course. I am

Re: anyone know how to lookup non-continguous columns BUT for prefixes?

2012-09-04 Thread Dave Brosius
You'd need to make n queries, or do a superset query from min;-

Re: anyone know how to lookup non-continguous columns BUT for prefixes?

2012-09-04 Thread aaron morton
It's not possible to get non contiguous column slices. This is a trimmed down example of course. I am thinking maybe I might just use the astyanax async to send out 500 requests instead. Keep an eye on what happens on the server side. Sometimes less is more. Cheers -