Class InternalQueryProfile
java.lang.Object
org.neo4j.driver.internal.summary.InternalPlan<QueryProfile>
org.neo4j.driver.internal.summary.InternalQueryProfile
- All Implemented Interfaces:
Plan, QueryProfile
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Function<Value, QueryProfile> Builds a regular plan without profiling information - eg.Fields inherited from class InternalPlan
EXPLAIN_PLAN_FROM_VALUE -
Method Summary
Modifier and TypeMethodDescriptiondbHits()Returns the number of times this part of the plan touched the underlying data stores if it was recorded.Returns the ratio of page cache hits to total number of lookups if it was recorded.Returns the number of page cache hits caused by executing the associated execution step if it was recorded.Returns the number of page cache misses caused by executing the associated execution step if it was recorded.rows()Returns the number of rows processed by the associated execution step if it was recorded.time()Returns the amount of time spent in the associated execution step if it was recorded.Methods inherited from class InternalPlan
arguments, children, equals, hashCode, identifiers, operatorType, toStringMethods inherited from interface Plan
arguments, identifiers, operatorTypeMethods inherited from interface QueryProfile
children
-
Field Details
-
PROFILE_FROM_VALUE
Builds a regular plan without profiling information - eg. a plan that came as a result of an `EXPLAIN` query
-
-
Method Details
-
dbHits
Description copied from interface:QueryProfileReturns the number of times this part of the plan touched the underlying data stores if it was recorded.- Specified by:
dbHitsin interfaceQueryProfile- Returns:
- the number of times this part of the plan touched the underlying data stores if it was recorded
-
rows
Description copied from interface:QueryProfileReturns the number of rows processed by the associated execution step if it was recorded.- Specified by:
rowsin interfaceQueryProfile- Returns:
- the number of rows processed by the associated execution step if it was recorded
-
pageCacheHits
Description copied from interface:QueryProfileReturns the number of page cache hits caused by executing the associated execution step if it was recorded.- Specified by:
pageCacheHitsin interfaceQueryProfile- Returns:
- the number of page cache hits caused by executing the associated execution step if it was recorded
-
pageCacheMisses
Description copied from interface:QueryProfileReturns the number of page cache misses caused by executing the associated execution step if it was recorded.- Specified by:
pageCacheMissesin interfaceQueryProfile- Returns:
- the number of page cache misses caused by executing the associated execution step if it was recorded
-
pageCacheHitRatio
Description copied from interface:QueryProfileReturns the ratio of page cache hits to total number of lookups if it was recorded.- Specified by:
pageCacheHitRatioin interfaceQueryProfile- Returns:
- the ratio of page cache hits to total number of lookups if it was recorded
-
time
Description copied from interface:QueryProfileReturns the amount of time spent in the associated execution step if it was recorded.- Specified by:
timein interfaceQueryProfile- Returns:
- the amount of time spent in the associated execution step if it was recorded
-