Is it possible to run Neo4j in memory only without any persistent database/file storage?
The data coming from several xml/json files, and we have to load them into jvm heap memory by using ConcurrentHashmap. Since the data objects have dependencies (parent-child, child can link back to parent), we want to maintain an object graph. Is there any way to use Neo4J in this case; or can you suggest any framework that can support maintaining this kind of object graph.
Thanks you.