ehatcher 2004/06/12 09:54:37 Modified: docs fileformats.html xdocs fileformats.xml Log: adjust .tvf file format to match actual implementation Revision Changes Path 1.25 +10 -2 jakarta-lucene/docs/fileformats.html Index: fileformats.html =================================================================== RCS file: /home/cvs/jakarta-lucene/docs/fileformats.html,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- fileformats.html 18 May 2004 13:32:00 -0000 1.24 +++ fileformats.html 12 Jun 2004 16:54:37 -0000 1.25 @@ -1667,9 +1667,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>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> 1.12 +10 -2 jakarta-lucene/xdocs/fileformats.xml Index: fileformats.xml =================================================================== RCS file: /home/cvs/jakarta-lucene/xdocs/fileformats.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- fileformats.xml 30 Mar 2004 17:28:11 -0000 1.11 +++ fileformats.xml 12 Jun 2004 16:54:37 -0000 1.12 @@ -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>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]