Class OfflineSorter.SortInfo
Sort info (debugging mostly).
Inherited Members
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.dll
Syntax
public class OfflineSorter.SortInfo
Constructors
SortInfo(OfflineSorter)
Create a new OfflineSorter.SortInfo (with empty statistics) for debugging.
Declaration
public SortInfo(OfflineSorter offlineSorter)
Parameters
Type | Name | Description |
---|---|---|
OfflineSorter | offlineSorter |
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
|
Properties
BufferSize
Read buffer size (in bytes)
Declaration
public long BufferSize { get; }
Property Value
Type | Description |
---|---|
long |
Lines
Number of lines of data read
Declaration
public int Lines { get; set; }
Property Value
Type | Description |
---|---|
int |
MergeRounds
Number of partition merges
Declaration
public int MergeRounds { get; set; }
Property Value
Type | Description |
---|---|
int |
MergeTime
Time spent merging sorted partitions (in milliseconds)
Declaration
public long MergeTime { get; set; }
Property Value
Type | Description |
---|---|
long |
ReadTime
Time spent in i/o read (in milliseconds)
Declaration
public long ReadTime { get; set; }
Property Value
Type | Description |
---|---|
long |
SortTime
Time spent sorting data (in milliseconds)
Declaration
public long SortTime { get; set; }
Property Value
Type | Description |
---|---|
long |
TempMergeFiles
Number of temporary files created when merging partitions
Declaration
public int TempMergeFiles { get; set; }
Property Value
Type | Description |
---|---|
int |
TotalTime
Total time spent (in milliseconds)
Declaration
public long TotalTime { get; set; }
Property Value
Type | Description |
---|---|
long |
Methods
ToString()
Returns a string representation of this object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |