mirror of https://github.com/apache/lucene.git
bring segments file documentation back in sync with code changes
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150365 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7bd8188ba6
commit
fd370a1677
|
@ -1096,18 +1096,27 @@ limitations under the License.
|
||||||
segment.
|
segment.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Segments --> SegCount, <SegName, SegSize><sup>SegCount</sup>
|
Segments --> Format, Version, SegCount, <SegName, SegSize><sup>SegCount</sup>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
SegCount, SegSize --> UInt32
|
Format, SegCount, SegSize --> UInt32
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Version --> UInt64
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
SegName --> String
|
SegName --> String
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Format is -1 in Lucene 1.4.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Version counts how often the index has been
|
||||||
|
changed by adding or deleting documents.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
SegName is the name of the segment, and is used as the file name prefix
|
SegName is the name of the segment, and is used as the file name prefix
|
||||||
for
|
for all of the files that compose the segment's index.
|
||||||
all of the files that compose the segment's index.
|
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
SegSize is the number of documents contained in the segment index.
|
SegSize is the number of documents contained in the segment index.
|
||||||
|
@ -1367,7 +1376,7 @@ limitations under the License.
|
||||||
term's text.
|
term's text.
|
||||||
</p>
|
</p>
|
||||||
<p>TIVersion names the version of the format
|
<p>TIVersion names the version of the format
|
||||||
of this file and is -1 in Lucene 1.4.
|
of this file and is -2 in Lucene 1.4.
|
||||||
</p>
|
</p>
|
||||||
<p>Term
|
<p>Term
|
||||||
text prefixes are shared. The PrefixLength is the number of initial
|
text prefixes are shared. The PrefixLength is the number of initial
|
||||||
|
|
|
@ -694,21 +694,33 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Segments --> SegCount, <SegName, SegSize><sup>SegCount</sup>
|
Segments --> Format, Version, SegCount, <SegName, SegSize><sup>SegCount</sup>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
SegCount, SegSize --> UInt32
|
Format, SegCount, SegSize --> UInt32
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Version --> UInt64
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
SegName --> String
|
SegName --> String
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Format is -1 in Lucene 1.4.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Version counts how often the index has been
|
||||||
|
changed by adding or deleting documents.
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
SegName is the name of the segment, and is used as the file name prefix
|
SegName is the name of the segment, and is used as the file name prefix
|
||||||
for
|
for all of the files that compose the segment's index.
|
||||||
all of the files that compose the segment's index.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -940,7 +952,7 @@
|
||||||
term's text.
|
term's text.
|
||||||
</p>
|
</p>
|
||||||
<p>TIVersion names the version of the format
|
<p>TIVersion names the version of the format
|
||||||
of this file and is -1 in Lucene 1.4.
|
of this file and is -2 in Lucene 1.4.
|
||||||
</p>
|
</p>
|
||||||
<p>Term
|
<p>Term
|
||||||
text prefixes are shared. The PrefixLength is the number of initial
|
text prefixes are shared. The PrefixLength is the number of initial
|
||||||
|
|
Loading…
Reference in New Issue