Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我相信在内部 Cypher / Gremlin 将语句转换为相应的 Java 方法调用。有没有办法跟踪运行中的方法调用?
例如,在 Hibernate 中,我们可以指定“show sql”来查看生成的 sql 语句。
[编辑] 我想这样做的原因: 1. 出于调试目的:找出密码 / gremlin 没有产生预期结果的原因。
用于学习目的:找出幕后发生的事情
优化:找出瓶颈在哪里。
在 Cypher 中,计划在未来几个月内添加。最终,是的,目前在 Hood 下使用的方法是 Java Neo4j 核心 API 和 Traversal Framework。介意添加一个导致您出现问题的案例吗?
对于 Gremlin,在 Gremlin 表达式的末尾执行 .toString() 以查看它最终编译到的 Pipes (http://pipes.tinkerpop.com)。