Paul Sutter wrote:
Is there a reason for the key and record length included in the SequenceFile
format?

This permits code to process entries without parsing them, an important optimization. For example, when seeking a MapFile, keys are parsed but not values. When sorting, if a comparator is defined that can compare raw binary data, then even keys are not parsed.

Doug

Reply via email to