neo4j慢查询日志在哪里?

时间:2015-10-24 22:19:44

标签: neo4j cypher

我想监视neo4j-cypher-queries的执行时间,但我找不到该日志文件。甚至谷歌都没有帮助。

有人能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:3)

有一些配置选项可以将查询记录的速度低于阈值,例如

dbms.querylog.enabled=true
dbms.querylog.filename=data/log/queries.log
dbms.querylog.max_archives=10
dbms.querylog.threshold=0

如果将阈值设置为0,则会记录每个查询。查看参考手册中的部分:http://neo4j.com/docs/stable/configuration-settings.html