I am studying graph databases for a working draft. Since our data is strongly related, it seems that the graph database option will be convenient for us.
One of the first DB graph options I came across was neo4j, and for the most part I like it. However, I have one question about neo4j that I cannot find the answer to: Can I get neo4j to store the entire graph in memory? If so, how to set it up?
The application I'm developing should be lightning fast. I can't wait for db to go to disk to get the data I'm looking for. I need the whole database to be stored in memory to reduce query time.
Is there a way to hold all the neo4j DB memory?
Thanks!
source
share