Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class BlockTreeTermsReader<TSubclassState>.Stats

    BlockTree statistics for a single field returned by ComputeStats().

    Inheritance
    object
    BlockTreeTermsReader<TSubclassState>.Stats
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Lucene.Net.Codecs
    Assembly: Lucene.Net.dll
    Syntax
    public class BlockTreeTermsReader<TSubclassState>.Stats

    Properties

    BlockCountByPrefixLen

    Number of blocks at each prefix depth.

    Declaration
    public int[] BlockCountByPrefixLen { get; set; }
    Property Value
    Type Description
    int[]

    Field

    Field name.

    Declaration
    public string Field { get; }
    Property Value
    Type Description
    string

    FloorBlockCount

    The number of floor blocks (meta-blocks larger than the allowed maxItemsPerBlock) in the terms file.

    Declaration
    public int FloorBlockCount { get; set; }
    Property Value
    Type Description
    int

    FloorSubBlockCount

    The number of sub-blocks within the floor blocks.

    Declaration
    public int FloorSubBlockCount { get; set; }
    Property Value
    Type Description
    int

    IndexArcCount

    How many arcs in the index FST.

    Declaration
    public long IndexArcCount { get; set; }
    Property Value
    Type Description
    long

    IndexNodeCount

    How many nodes in the index FST.

    Declaration
    public long IndexNodeCount { get; set; }
    Property Value
    Type Description
    long

    IndexNumBytes

    Byte size of the index.

    Declaration
    public long IndexNumBytes { get; set; }
    Property Value
    Type Description
    long

    MixedBlockCount

    The number of "internal" blocks (that have both terms and sub-blocks).

    Declaration
    public int MixedBlockCount { get; set; }
    Property Value
    Type Description
    int

    NonFloorBlockCount

    The number of normal (non-floor) blocks in the terms file.

    Declaration
    public int NonFloorBlockCount { get; set; }
    Property Value
    Type Description
    int

    Segment

    Segment name.

    Declaration
    public string Segment { get; }
    Property Value
    Type Description
    string

    SubBlocksOnlyBlockCount

    The number of "internal" blocks that do not contain terms (have only sub-blocks).

    Declaration
    public int SubBlocksOnlyBlockCount { get; set; }
    Property Value
    Type Description
    int

    TermsOnlyBlockCount

    The number of "leaf" blocks (blocks that have only terms).

    Declaration
    public int TermsOnlyBlockCount { get; set; }
    Property Value
    Type Description
    int

    TotalBlockCount

    Total number of blocks.

    Declaration
    public int TotalBlockCount { get; set; }
    Property Value
    Type Description
    int

    TotalBlockOtherBytes

    Total bytes stored by the PostingsBaseFormat, plus the other few vInts stored in the frame.

    Declaration
    public long TotalBlockOtherBytes { get; set; }
    Property Value
    Type Description
    long

    TotalBlockStatsBytes

    Total number of bytes used to store term stats (not including what the PostingsBaseFormat stores.

    Declaration
    public long TotalBlockStatsBytes { get; set; }
    Property Value
    Type Description
    long

    TotalBlockSuffixBytes

    Total number of bytes used to store term suffixes.

    Declaration
    public long TotalBlockSuffixBytes { get; set; }
    Property Value
    Type Description
    long

    TotalTermBytes

    Total number of bytes (sum of term lengths) across all terms in the field.

    Declaration
    public long TotalTermBytes { get; set; }
    Property Value
    Type Description
    long

    TotalTermCount

    Total number of terms in the field.

    Declaration
    public long TotalTermCount { get; set; }
    Property Value
    Type Description
    long

    Methods

    ToString()

    Returns a string that represents the current object.

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    A string that represents the current object.

    Overrides
    object.ToString()
    Back to top Copyright © 2024 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.