Enum Field.Store
Specifies whether and how a field should be stored.
Namespace: Lucene.Net.Documents
Assembly: Lucene.Net.dll
Syntax
public enum Store
Fields
Name | Description |
---|---|
NO | Do not store the field's value in the index. |
YES | Store the original field value in the index. this is useful for short texts like a document's title which should be displayed with the results. The value is stored in its original form, i.e. no analyzer is used before it is stored. |