Description
get.setMaxResultsPerColumnFamily(1); // Hold down memory use on wide rows
Setting this returns only one cell irrespective of the number of versions /qualifiers in a family. Instead we should have used the limit option to next() call
get.setMaxResultsPerColumnFamily(1); // Hold down memory use on wide rows
Setting this returns only one cell irrespective of the number of versions /qualifiers in a family. Instead we should have used the limit option to next() call