neo4j索引相关问题
使用 create index on : People(name) 语句创建的索引,在查询时 使用 match (n {name:‘测试’}}) return n 或者 match (n) where n.name=‘测试’ return n 查询事实证明索引没起作用,查询还是遍历全图 而教程说加上label 如match (n:People {name:‘测试’}}) return n 或者 match (n:People) where n.name=‘测试’ return n 查询使用了索引但是我感觉还是没用到索引,只是利用了label过滤
3 回复
另外还有个问题neo4j 3.0版本还支持legeacy index 么,我在neo4j.conf里加了如下自动索引配置好像没起作用 node_auto_indexing=true
The node property keys to be auto-indexed, if enabled.
node_keys_indexable=CCRQ,CC,FZ,CX,DZ,PH,type,ZW
Enable auto-indexing for relationships, default is false.
relationship_auto_indexing=true
The relationship property keys to be auto-indexed, if enabled.
relationship_keys_indexable=type