Show / Hide Table of Contents

    Class OfflineSorter.SortInfo

    Sort info (debugging mostly).

    Inheritance
    System.Object
    OfflineSorter.SortInfo
    Namespace: Lucene.Net.Util
    Assembly: Lucene.Net.dll
    Syntax
    public class SortInfo : object

    Constructors

    | Improve this Doc View Source

    SortInfo(OfflineSorter)

    Create a new OfflineSorter.SortInfo (with empty statistics) for debugging.

    Declaration
    public SortInfo(OfflineSorter outerInstance)
    Parameters
    Type Name Description
    OfflineSorter outerInstance

    Properties

    | Improve this Doc View Source

    BufferSize

    Read buffer size (in bytes)

    Declaration
    public long BufferSize { get; }
    Property Value
    Type Description
    System.Int64
    | Improve this Doc View Source

    Lines

    Number of lines of data read

    Declaration
    public int Lines { get; set; }
    Property Value
    Type Description
    System.Int32
    | Improve this Doc View Source

    MergeRounds

    Number of partition merges

    Declaration
    public int MergeRounds { get; set; }
    Property Value
    Type Description
    System.Int32
    | Improve this Doc View Source

    MergeTime

    Time spent merging sorted partitions (in milliseconds)

    Declaration
    public long MergeTime { get; set; }
    Property Value
    Type Description
    System.Int64
    | Improve this Doc View Source

    ReadTime

    Time spent in i/o read (in milliseconds)

    Declaration
    public long ReadTime { get; set; }
    Property Value
    Type Description
    System.Int64
    | Improve this Doc View Source

    SortTime

    Time spent sorting data (in milliseconds)

    Declaration
    public long SortTime { get; set; }
    Property Value
    Type Description
    System.Int64
    | Improve this Doc View Source

    TempMergeFiles

    Number of temporary files created when merging partitions

    Declaration
    public int TempMergeFiles { get; set; }
    Property Value
    Type Description
    System.Int32
    | Improve this Doc View Source

    TotalTime

    Total time spent (in milliseconds)

    Declaration
    public long TotalTime { get; set; }
    Property Value
    Type Description
    System.Int64

    Methods

    | Improve this Doc View Source

    ToString()

    Returns a string representation of this object.

    Declaration
    public override string ToString()
    Returns
    Type Description
    System.String
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)