Interface IIndexableFieldType
Describes the properties of a field.
@lucene.experimental
Assembly: DistributedLucene.Net.dll
Syntax
public interface IIndexableFieldType
Properties
Name | Description |
---|---|
DocValueType | DocValues DocValuesType: if not NONE then the field's value will be indexed into docValues. |
IndexOptions | IndexOptions, describing what should be recorded into the inverted index |
IsClientStored | This is mainly for internal use |
IsIndexed |
|
IsStored |
|
IsTokenized |
This has no effect if IsIndexed returns |
OmitNorms |
This saves memory, but at the expense of scoring quality (length normalization will be disabled), and if you omit norms, you cannot use index-time boosts. |
StoreTermVectorOffsets |
This option is illegal if term vectors are not enabled for the field
(StoreTermVectors is |
StoreTermVectorPayloads |
This option is illegal if term vector positions are not enabled
for the field (StoreTermVectors is |
StoreTermVectorPositions |
This option is illegal if term vectors are not enabled for the field
(StoreTermVectors is |
StoreTermVectors |
this builds a miniature inverted-index for this field which
can be accessed in a document-oriented way from
This option is illegal if IsIndexed returns |