Reputation: 1
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
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
Reputation: 39925
you can prefix your cypher query with PROFILE
in the Neo4j shell.
Upvotes: 2