mirror of https://github.com/apache/lucene.git
fix the information about the .tii file (but still not 100% accurate, see "TODO")
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@180084 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4114147edd
commit
3f2a20e6f7
|
@ -120,7 +120,7 @@ limitations under the License.
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
This document defines the index file formats used
|
This document defines the index file formats used
|
||||||
in Lucene version 1.4.
|
in Lucene version 1.4 and above.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Apache Lucene is written in Java, but several
|
Apache Lucene is written in Java, but several
|
||||||
|
@ -1458,23 +1458,32 @@ limitations under the License.
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
TermInfoIndex (.tii)-->
|
TermInfoIndex (.tii)-->
|
||||||
IndexTermCount, TermIndices
|
TIVersion, IndexTermCount, IndexInterval, SkipInterval, TermIndices
|
||||||
|
</p>
|
||||||
|
<p>TIVersion -->
|
||||||
|
UInt32
|
||||||
</p>
|
</p>
|
||||||
<p>IndexTermCount -->
|
<p>IndexTermCount -->
|
||||||
|
UInt64
|
||||||
|
</p>
|
||||||
|
<p>IndexInterval -->
|
||||||
|
UInt32
|
||||||
|
</p>
|
||||||
|
<p>SkipInterval -->
|
||||||
UInt32
|
UInt32
|
||||||
</p>
|
</p>
|
||||||
<p>TermIndices -->
|
<p>TermIndices -->
|
||||||
<TermInfo, IndexDelta><sup>IndexTermCount</sup>
|
<TermInfo, IndexDelta><sup>IndexTermCount</sup>
|
||||||
</p>
|
</p>
|
||||||
<p>IndexDelta -->
|
<p>IndexDelta -->
|
||||||
VInt
|
VLong
|
||||||
</p>
|
</p>
|
||||||
<p>IndexDelta
|
<p>IndexDelta
|
||||||
determines the position of this term's TermInfo within the .tis file. In
|
determines the position of this term's TermInfo within the .tis file. In
|
||||||
particular, it is the difference between the position of this term's
|
particular, it is the difference between the position of this term's
|
||||||
entry in that file and the position of the previous term's entry (or
|
entry in that file and the position of the previous term's entry.
|
||||||
zero for the first term in the file).
|
|
||||||
</p>
|
</p>
|
||||||
|
<p>TODO: document skipInterval information</p>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
This document defines the index file formats used
|
This document defines the index file formats used
|
||||||
in Lucene version 1.4.
|
in Lucene version 1.4 and above.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -1051,23 +1051,32 @@
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
TermInfoIndex (.tii)-->
|
TermInfoIndex (.tii)-->
|
||||||
IndexTermCount, TermIndices
|
TIVersion, IndexTermCount, IndexInterval, SkipInterval, TermIndices
|
||||||
|
</p>
|
||||||
|
<p>TIVersion -->
|
||||||
|
UInt32
|
||||||
</p>
|
</p>
|
||||||
<p>IndexTermCount -->
|
<p>IndexTermCount -->
|
||||||
|
UInt64
|
||||||
|
</p>
|
||||||
|
<p>IndexInterval -->
|
||||||
|
UInt32
|
||||||
|
</p>
|
||||||
|
<p>SkipInterval -->
|
||||||
UInt32
|
UInt32
|
||||||
</p>
|
</p>
|
||||||
<p>TermIndices -->
|
<p>TermIndices -->
|
||||||
<TermInfo, IndexDelta><sup>IndexTermCount</sup>
|
<TermInfo, IndexDelta><sup>IndexTermCount</sup>
|
||||||
</p>
|
</p>
|
||||||
<p>IndexDelta -->
|
<p>IndexDelta -->
|
||||||
VInt
|
VLong
|
||||||
</p>
|
</p>
|
||||||
<p>IndexDelta
|
<p>IndexDelta
|
||||||
determines the position of this term's TermInfo within the .tis file. In
|
determines the position of this term's TermInfo within the .tis file. In
|
||||||
particular, it is the difference between the position of this term's
|
particular, it is the difference between the position of this term's
|
||||||
entry in that file and the position of the previous term's entry (or
|
entry in that file and the position of the previous term's entry.
|
||||||
zero for the first term in the file).
|
|
||||||
</p>
|
</p>
|
||||||
|
<p>TODO: document skipInterval information</p>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</subsection>
|
</subsection>
|
||||||
|
|
Loading…
Reference in New Issue