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:
Erik Hatcher 2004-06-12 16:54:37 +00:00
parent 5ca4cb27e2
commit 72efb4afbf
2 changed files with 20 additions and 4 deletions

View File

@ -1667,9 +1667,17 @@ limitations under the License.
<p>NumTerms --&gt; VInt</p>
<p>NumDistinct --&gt; VInt -- Future Use</p>
<p>TermFreqs --&gt; &lt;TermText, TermFreq&gt;<sup>NumTerms</sup></p>
<p>TermText --&gt; String</p>
<p>TermText --&gt; &lt;PrefixLength, Suffix&gt;</p>
<p>PrefixLength --&gt; VInt</p>
<p>Suffix --&gt; String</p>
<p>TermFreq --&gt; 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>

View File

@ -1207,9 +1207,17 @@
<p>NumTerms --&gt; VInt</p>
<p>NumDistinct --&gt; VInt -- Future Use</p>
<p>TermFreqs --&gt; &lt;TermText, TermFreq&gt;<sup>NumTerms</sup></p>
<p>TermText --&gt; String</p>
<p>TermText --&gt; &lt;PrefixLength, Suffix&gt;</p>
<p>PrefixLength --&gt; VInt</p>
<p>Suffix --&gt; String</p>
<p>TermFreq --&gt; 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>