mirror of https://github.com/apache/lucene.git
adjust .tvf file format to match actual implementation
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150363 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5ca4cb27e2
commit
72efb4afbf
|
@ -1667,9 +1667,17 @@ limitations under the License.
|
|||
<p>NumTerms --> VInt</p>
|
||||
<p>NumDistinct --> VInt -- Future Use</p>
|
||||
<p>TermFreqs --> <TermText, TermFreq><sup>NumTerms</sup></p>
|
||||
<p>TermText --> String</p>
|
||||
<p>TermText --> <PrefixLength, Suffix></p>
|
||||
<p>PrefixLength --> VInt</p>
|
||||
<p>Suffix --> String</p>
|
||||
<p>TermFreq --> VInt</p>
|
||||
<p />
|
||||
<p>Term
|
||||
text prefixes are shared. The PrefixLength is the number of initial
|
||||
characters from the previous term which must be pre-pended to a
|
||||
term's suffix in order to form the term's text. Thus, if the
|
||||
previous term's text was "bone" and the term is "boy",
|
||||
the PrefixLength is two and the suffix is "y".
|
||||
</p>
|
||||
</li>
|
||||
</ol>
|
||||
</blockquote>
|
||||
|
|
|
@ -1207,9 +1207,17 @@
|
|||
<p>NumTerms --> VInt</p>
|
||||
<p>NumDistinct --> VInt -- Future Use</p>
|
||||
<p>TermFreqs --> <TermText, TermFreq><sup>NumTerms</sup></p>
|
||||
<p>TermText --> String</p>
|
||||
<p>TermText --> <PrefixLength, Suffix></p>
|
||||
<p>PrefixLength --> VInt</p>
|
||||
<p>Suffix --> String</p>
|
||||
<p>TermFreq --> VInt</p>
|
||||
<p></p>
|
||||
<p>Term
|
||||
text prefixes are shared. The PrefixLength is the number of initial
|
||||
characters from the previous term which must be pre-pended to a
|
||||
term's suffix in order to form the term's text. Thus, if the
|
||||
previous term's text was "bone" and the term is "boy",
|
||||
the PrefixLength is two and the suffix is "y".
|
||||
</p>
|
||||
</li>
|
||||
</ol>
|
||||
</subsection>
|
||||
|
|
Loading…
Reference in New Issue