Can neo4j be run in memory only?

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.


Neo4j has is an ImpermanentDataBase that is intended for unit testing, but it runs in memory.

See http://docs.neo4j.org/chunked/stable/tutorials-java-unit-testing.html.

链接地址: http://www.djcxy.com/p/77180.html

上一篇: 数组中元素的最大数量与最大索引器值

下一篇: neo4j只能在内存中运行吗?