我正在使用批量导入将一个非常小的图(5 个节点;3 个 rel)加载到neo4j 2.0
.
我相信所有自动索引属性都设置在neo4j.properties
:
node_auto_indexing=true
node_keys_indexable=name,age
这是我所做的:
1. neo4j stop
2. batch-import
3. neo4j start
4. query: START r=node:node_auto_index(name="Rana") return r
我收到以下密码错误索引node_auto_index
不存在
这里有什么问题?