无法找到启用自动索引的配置。我正在使用社区版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
答案 0 :(得分:1)
您需要先在neo4j.conf
中启用自动建立索引:
dbms.auto_index.nodes.enabled=true
dbms.auto_index.nodes.keys=username
有关详细信息,请参阅文档中的table 144 on this page