Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
节点和关系的neo4j持久化是如何实现的?索引是如何处理的?
在索引 Neo4j上:没有自己的索引。它只有一个名为 的接口IndexerService,由Lucene(例如) 实现,它非常快,可以快速处理精确和全文搜索,但不支持任何搜索。
Neo4j
IndexerService
Lucene
索引节点很容易neo4j,只需调用函数 index(node, key, value); 它已编入索引。
neo4j
不确定持久性是如何实现的。
看起来他们使用自己的存储实现。查看 org.neo4j.kernel.impl.nioneo.store 包。