Google News
logo
Neo4J - Interview Questions
Mention what are the different types of object caches in Neo4j?
There are two different types of object caches in Neo4j
 
* Reference Caches : With this cache, Neo4j will use as much as allocated JVM heap memory as it can hold nodes and relationships

* High-performance Caches : It get assigned a certain maximum amount of space on the JVM heap and will delete objects whenever it grows bigger than that.
Relationship and Nodes are added to the object cache as soon as they are accessed
Advertisement