我正在尝试使用以下代码
来分析neo4j数据库命中public int calculateHits(List<ExecutionPlanDescription> list) {
int hits = 0;
int head = 0;
if (list.isEmpty())
return 0;
if (list.get(head).hasProfilerStatistics()) {
hits += list.get(head).getProfilerStatistics().getDbHits();
System.out.println(hits);
}
hits += calculateHits(list.get(head).getChildren()); // recurse over the children of the head
list.remove(head); // remove the head to recurse on the remaining of the list
hits += calculateHits(list);
return hits;
}
在主要我用这种方式称呼
Result result = neo4jGraph.execute(query);
int hits = calculateHits(result.getExecutionPlanDescription().getChildren());
但是,该方法始终返回0次点击。我记录了queryExecuter计划的名称,发现了EagerAggregation,Filter。展开(全部),过滤和NodeByLabelScan计划。但似乎所有计划都不存在profilerStatistics,因为它从不访问条件并增加命中率。
代码中是否有任何问题,或者我需要首先进行某些配置来分析数据库命中? ... 感谢您的帮助。谢谢!
答案 0 :(得分:1)
我终于找到了问题!我必须在查询中使用配置文件来填充统计信息并获取数据库命中。所以查询应该是
PROFILE Match (e:Event)-[r:has_metadata]-> (s:EventMetadata) where s.type STARTS WITH 'ELec' AND s.eventLocation IN ["GW", "GW32", "FW", "FW29" , "SW", "SW00"] AND e.date="1/11/2016" return SUM( e.reading)}