Lior Goldemberg
Lior Goldemberg

Reputation: 876

Neo4j query result cache

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

Answers (1)

Stefan Armbruster
Stefan Armbruster

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

Related Questions