user3189129
user3189129

Reputation: 1

Debugging query neo4j

I am studing physical data model of neo4j for my tesis, and I want to know if Can I get detailed information about scanned relationship and nodes in a query?

Example, how nodes system should read for find a node with name='test'?

Thanks!

Upvotes: 0

Views: 923

Answers (2)

Michael Hunger
Michael Hunger

Reputation: 41706

Also Neo4j is open source, so you can look for yourself: http://github.com/neo4j/neo4j

There are also some talks on Neo4j internals: http://neo4j.org/internals

And this presentation video on Neo4j Internals: https://vimeo.com/76806550

Upvotes: 1

Stefan Armbruster
Stefan Armbruster

Reputation: 39925

you can prefix your cypher query with PROFILE in the Neo4j shell.

Upvotes: 2

Related Questions