Uses of Class
org.apache.lucene.sandbox.search.QueryProfilerResult
-
Packages that use QueryProfilerResult Package Description org.apache.lucene.sandbox.search This package contains a flexible graph-based proximity query, TermAutomatonQuery, and geospatial queries. -
-
Uses of QueryProfilerResult in org.apache.lucene.sandbox.search
Fields in org.apache.lucene.sandbox.search with type parameters of type QueryProfilerResult Modifier and Type Field Description private java.util.List<QueryProfilerResult>
QueryProfilerResult. children
Methods in org.apache.lucene.sandbox.search that return QueryProfilerResult Modifier and Type Method Description private QueryProfilerResult
QueryProfilerTree. doGetTree(int token)
Recursive helper to finalize a node in the dependency treeMethods in org.apache.lucene.sandbox.search that return types with arguments of type QueryProfilerResult Modifier and Type Method Description java.util.List<QueryProfilerResult>
QueryProfilerResult. getProfiledChildren()
Returns a list of all profiled children queriesjava.util.List<QueryProfilerResult>
QueryProfilerIndexSearcher. getProfileResult()
java.util.List<QueryProfilerResult>
QueryProfilerTree. getTree()
After the query has been run and profiled, we need to merge the flat timing map with the dependency graph to build a data structure that mirrors the original query treeConstructor parameters in org.apache.lucene.sandbox.search with type arguments of type QueryProfilerResult Constructor Description QueryProfilerResult(java.lang.String type, java.lang.String description, java.util.Map<java.lang.String,java.lang.Long> breakdown, long totalTime, java.util.List<QueryProfilerResult> children)
-