我正在尝试使用 java 驱动程序找出我的 Cypher 查询的执行时间。
Session session = driver.session();
session.run( "CREATE (a:Person {name:'Arthur', title:'King'})" );
StatementResult result = session.run( "Profile MATCH (a:Person) WHERE a.name = 'Arthur' RETURN a.name AS name, a.title AS title" );
但我在StatementResult或ResultSummary中的任何地方都找不到它,它由StatementResult.consume(query)
.
ProfiledPlan
我可以从in访问 db hits ,ResultSummary
但没有关于时间的信息。
有什么方法可以使用 neo4j java 驱动程序访问 Cypher 查询执行时间?