C# Class Lucene.Net.Index.CheckIndex.Status.SegmentInfoStatus

Holds the status of each segment in the index. See SegmentInfos.

WARNING: this API is new and experimental and is subject to suddenly change in the next release.

Mostrar archivo Open project: synhershko/lucene.net Class Usage Examples

Public Properties

Property Type Description
compound bool
deletionsFileName System.String
diagnostics string>.IDictionary
docCount int
docStoreCompoundFile bool
docStoreOffset int
docStoreSegment System.String
fieldNormStatus FieldNormStatus
hasDeletions bool
hasProx bool
name System.String
numDeleted int
numFiles int
openReaderPassed bool
sizeMB double
storedFieldStatus StoredFieldStatus
termIndexStatus TermIndexStatus
termVectorStatus TermVectorStatus

Property Details

compound public_oe property

True if segment is compound file format.
public bool compound
return bool

deletionsFileName public_oe property

Name of the current deletions file name.
public String,System deletionsFileName
return System.String

diagnostics public_oe property

Map<String, String> that includes certain debugging details that IndexWriter records into each segment it creates
public IDictionary diagnostics
return string>.IDictionary

docCount public_oe property

Document count (does not take deletions into account).
public int docCount
return int

docStoreCompoundFile public_oe property

True if the shared doc store files are compound file format.
public bool docStoreCompoundFile
return bool

docStoreOffset public_oe property

Doc store offset, if this segment shares the doc store files (stored fields and term vectors) with other segments. This is -1 if it does not share.
public int docStoreOffset
return int

docStoreSegment public_oe property

String of the shared doc store segment, or null if this segment does not share the doc store files.
public String,System docStoreSegment
return System.String

fieldNormStatus public_oe property

Status for testing of field norms (null if field norms could not be tested).
public FieldNormStatus fieldNormStatus
return FieldNormStatus

hasDeletions public_oe property

True if this segment has pending deletions.
public bool hasDeletions
return bool

hasProx public_oe property

True if at least one of the fields in this segment does not omitTermFreqAndPositions.
public bool hasProx
return bool

name public_oe property

Name of the segment.
public String,System name
return System.String

numDeleted public_oe property

Number of deleted documents.
public int numDeleted
return int

numFiles public_oe property

Number of files referenced by this segment.
public int numFiles
return int

openReaderPassed public_oe property

True if we were able to open a SegmentReader on this segment.
public bool openReaderPassed
return bool

sizeMB public_oe property

Net size (MB) of the files referenced by this segment.
public double sizeMB
return double

storedFieldStatus public_oe property

Status for testing of stored fields (null if stored fields could not be tested).
public StoredFieldStatus storedFieldStatus
return StoredFieldStatus

termIndexStatus public_oe property

Status for testing of indexed terms (null if indexed terms could not be tested).
public TermIndexStatus termIndexStatus
return TermIndexStatus

termVectorStatus public_oe property

Status for testing of term vectors (null if term vectors could not be tested).
public TermVectorStatus termVectorStatus
return TermVectorStatus