Show / Hide Table of Contents

    Enum Field.Store

    Specifies whether and how a field should be stored.

    Namespace: Lucene.Net.Documents
    Assembly: Lucene.Net.dll
    Syntax
    public enum Store : int

    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.

    Extension Methods

    FieldExtensions.IsStored()
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)