|
|
-
Re: Get on a row with multiple columnsMarcos Ortiz 2013-02-09, 05:08
Like Ishan said, a get give an instance of the Result class.
All utility methods that you can use are: byte[] getValue(byte[] family, byte[] qualifier) byte[] value() byte[] getRow() int size() boolean isEmpty() KeyValue[] raw() # Like Ishan said, all data here is sorted List<KeyValue> list() On 02/08/2013 11:29 PM, Ishan Chhabra wrote: > Based on what I read in Lars' book, a get will return a result a Result, > which is internally a KeyValue[]. This KeyValue[] is sorted by the key and > you access this array using raw or list methods on the Result object. > > > On Fri, Feb 8, 2013 at 5:40 PM, Varun Sharma <[EMAIL PROTECTED]> wrote: > >> +user >> >> On Fri, Feb 8, 2013 at 5:38 PM, Varun Sharma <[EMAIL PROTECTED]> wrote: >> >>> Hi, >>> >>> When I do a Get on a row with multiple column qualifiers. Do we sort the >>> column qualifers and make use of the sorted order when we get the >> results ? >>> Thanks >>> Varun >>> > > -- Marcos Ortiz Valmaseda, Product Manager && Data Scientist at UCI Blog: http://marcosluis2186.posterous.com Twitter: @marcosluis2186 <http://twitter.com/marcosluis2186> |