Hi, I was reading some internal info about Lucene, and was confused by a note on this page: https://lucene.apache.org/core/7_1_0/core/org/apache/lucene/codecs/compressing/CompressingStoredFieldsIndexWriter.html
The note (the last note at the bottom) says: - Once data is loaded into memory, you can lookup the start pointer of any document by performing two binary searches: a first one based on the values of DocBase in order to find the right block, and then inside the block based on DocBaseDeltas (by reconstructing the doc bases for every chunk). Shouldn't it say chunk, or document chunk (referring to document chunks in the field data file)? Thanks in advance, Roman Margolis