-2

Need to enable query logging for all my Neo4j queries. Not able to find a link for the specific version.

Is there any performance benchmarking tool where we can see the slow queries and the areas that need to be optimized.

Kunal Dethe
  • 1,254
  • 1
  • 18
  • 38

1 Answers1

0

In Enterprise edition, you can log slow queries:

http://neo4j.com/docs/2.3.4/configuration-settings.html#config_dbms.querylog.enabled

You can also PROFILE queries by putting the keyword PROFILE in front of the query and looking at the query plan.

Dave Fauth
  • 828
  • 5
  • 3