Reputation: 876
I've noticed that when I run a heavy query over and over again, it takes the same duration to finish. This is not typical behavior of databases. Does neo4j cache queries?
Upvotes: 1
Views: 808
Reputation: 39915
Neo4j caches the store files, node and relationship objects and query plans. However it does not query results by itself, this needs to be done on application side.
Upvotes: 3