Package org.apache.lucene.index
Class CheckIndex.Status.TermIndexStatus
java.lang.Object
org.apache.lucene.index.CheckIndex.Status.TermIndexStatus
- Enclosing class:
- CheckIndex.Status
Status from testing term index.
-
Field Summary
Modifier and TypeFieldDescriptionHolds details of block allocations in the block tree terms dictionary (this is only set if thePostingsFormat
for this segment uses block tree.long
Number of terms with zero live docs docs.Exception thrown during term index test (null on success)long
Number of terms with at least one live doc.long
Total frequency across all terms.long
Total number of positions. -
Method Summary
-
Field Details
-
termCount
public long termCountNumber of terms with at least one live doc. -
delTermCount
public long delTermCountNumber of terms with zero live docs docs. -
totFreq
public long totFreqTotal frequency across all terms. -
totPos
public long totPosTotal number of positions. -
error
Exception thrown during term index test (null on success) -
blockTreeStats
Holds details of block allocations in the block tree terms dictionary (this is only set if thePostingsFormat
for this segment uses block tree.
-