如何在Neo4j中启用autoindex?

时间:2016-07-12 16:30:40

标签: neo4j

无法找到启用自动索引的配置。我正在使用社区版3.0.3版  当我运行以下代码时:

START bob=node:user(username='Bob'),charlie=node:user(username='Charlie')

MATCH (bob)-[e:EMAILED]->(charlie) RETURN e

给出错误

  

Neo.ClientError.Schema.IndexNotFound

1 个答案:

答案 0 :(得分:1)

您需要先在neo4j.conf中启用自动建立索引:

dbms.auto_index.nodes.enabled=true
dbms.auto_index.nodes.keys=username

有关详细信息,请参阅文档中的table 144 on this page