Package org.apache.lucene.search.suggest
Class Sort.SortInfo
- java.lang.Object
-
- org.apache.lucene.search.suggest.Sort.SortInfo
-
- Enclosing class:
- Sort
public class Sort.SortInfo extends java.lang.ObjectSort info (debugging mostly).
-
-
Field Summary
Fields Modifier and Type Field Description longbufferSizeread buffer size (in bytes)intlinesnumber of lines of data readintmergeRoundsnumber of partition mergeslongmergeTimetime spent merging sorted partitions (in milliseconds)longreadTimetime spent in i/o read (in milliseconds)longsortTimetime spent sorting data (in milliseconds)inttempMergeFilesnumber of temporary files created when merging partitionslongtotalTimetotal time spent (in milliseconds)
-
Constructor Summary
Constructors Constructor Description SortInfo()create a new SortInfo (with empty statistics) for debugging
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
tempMergeFiles
public int tempMergeFiles
number of temporary files created when merging partitions
-
mergeRounds
public int mergeRounds
number of partition merges
-
lines
public int lines
number of lines of data read
-
mergeTime
public long mergeTime
time spent merging sorted partitions (in milliseconds)
-
sortTime
public long sortTime
time spent sorting data (in milliseconds)
-
totalTime
public long totalTime
total time spent (in milliseconds)
-
readTime
public long readTime
time spent in i/o read (in milliseconds)
-
bufferSize
public final long bufferSize
read buffer size (in bytes)
-
-