Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class FieldCache

    Inheritance
    System.Object
    FieldCache
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Lucene.Net.Search
    Assembly: Lucene.Net.dll
    Syntax
    public static class FieldCache

    Fields

    | Improve this Doc View Source

    DEFAULT

    Expert: The cache used internally by sorting and range query classes.

    Declaration
    public static IFieldCache DEFAULT
    Field Value
    Type Description
    IFieldCache
    | Improve this Doc View Source

    DEFAULT_BYTE_PARSER

    The default parser for byte values, which are encoded by System.SByte.ToString(System.String,System.IFormatProvider) using System.Globalization.CultureInfo.InvariantCulture.

    Declaration
    [Obsolete]
    public static readonly FieldCache.IByteParser DEFAULT_BYTE_PARSER
    Field Value
    Type Description
    FieldCache.IByteParser
    | Improve this Doc View Source

    DEFAULT_DOUBLE_PARSER

    The default parser for System.Double values, which are encoded by System.Double.ToString(System.String,System.IFormatProvider) using System.Globalization.CultureInfo.InvariantCulture.

    Declaration
    [Obsolete]
    public static readonly FieldCache.IDoubleParser DEFAULT_DOUBLE_PARSER
    Field Value
    Type Description
    FieldCache.IDoubleParser
    | Improve this Doc View Source

    DEFAULT_INT16_PARSER

    The default parser for System.Int16 values, which are encoded by System.Int16.ToString(System.String,System.IFormatProvider) using System.Globalization.CultureInfo.InvariantCulture.

    NOTE: This was DEFAULT_SHORT_PARSER in Lucene

    Declaration
    [Obsolete]
    public static readonly FieldCache.IInt16Parser DEFAULT_INT16_PARSER
    Field Value
    Type Description
    FieldCache.IInt16Parser
    | Improve this Doc View Source

    DEFAULT_INT32_PARSER

    The default parser for System.Int32 values, which are encoded by System.Int32.ToString(System.String,System.IFormatProvider) using System.Globalization.CultureInfo.InvariantCulture.

    NOTE: This was DEFAULT_INT_PARSER in Lucene

    Declaration
    [Obsolete]
    public static readonly FieldCache.IInt32Parser DEFAULT_INT32_PARSER
    Field Value
    Type Description
    FieldCache.IInt32Parser
    | Improve this Doc View Source

    DEFAULT_INT64_PARSER

    The default parser for System.Int64 values, which are encoded by System.Int64.ToString(System.String,System.IFormatProvider) using System.Globalization.CultureInfo.InvariantCulture.

    NOTE: This was DEFAULT_LONG_PARSER in Lucene

    Declaration
    [Obsolete]
    public static readonly FieldCache.IInt64Parser DEFAULT_INT64_PARSER
    Field Value
    Type Description
    FieldCache.IInt64Parser
    | Improve this Doc View Source

    DEFAULT_SINGLE_PARSER

    The default parser for System.Single values, which are encoded by System.Single.ToString(System.String,System.IFormatProvider) using System.Globalization.CultureInfo.InvariantCulture.

    NOTE: This was DEFAULT_FLOAT_PARSER in Lucene

    Declaration
    [Obsolete]
    public static readonly FieldCache.ISingleParser DEFAULT_SINGLE_PARSER
    Field Value
    Type Description
    FieldCache.ISingleParser
    | Improve this Doc View Source

    NUMERIC_UTILS_DOUBLE_PARSER

    A parser instance for System.Double values encoded with NumericUtils, e.g. when indexed via DoubleField/NumericTokenStream.

    Declaration
    public static readonly FieldCache.IDoubleParser NUMERIC_UTILS_DOUBLE_PARSER
    Field Value
    Type Description
    FieldCache.IDoubleParser
    | Improve this Doc View Source

    NUMERIC_UTILS_INT32_PARSER

    A parser instance for System.Int32 values encoded by NumericUtils, e.g. when indexed via Int32Field/NumericTokenStream.

    NOTE: This was NUMERIC_UTILS_INT_PARSER in Lucene

    Declaration
    public static readonly FieldCache.IInt32Parser NUMERIC_UTILS_INT32_PARSER
    Field Value
    Type Description
    FieldCache.IInt32Parser
    | Improve this Doc View Source

    NUMERIC_UTILS_INT64_PARSER

    A parser instance for System.Int64 values encoded by NumericUtils, e.g. when indexed via Int64Field/NumericTokenStream.

    NOTE: This was NUMERIC_UTILS_LONG_PARSER in Lucene

    Declaration
    public static readonly FieldCache.IInt64Parser NUMERIC_UTILS_INT64_PARSER
    Field Value
    Type Description
    FieldCache.IInt64Parser
    | Improve this Doc View Source

    NUMERIC_UTILS_SINGLE_PARSER

    A parser instance for System.Single values encoded with NumericUtils, e.g. when indexed via SingleField/NumericTokenStream.

    NOTE: This was NUMERIC_UTILS_FLOAT_PARSER in Lucene

    Declaration
    public static readonly FieldCache.ISingleParser NUMERIC_UTILS_SINGLE_PARSER
    Field Value
    Type Description
    FieldCache.ISingleParser
    • Improve this Doc
    • View Source
    Back to top Copyright © 2021 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.