我将节点和边缘csv文件导入Gephi工具并导出数据库,然后将该数据库复制到Neo4j中。
当我运行Cypher时。
START n=node:node_auto_index(name="ravi")
RETURN n
它的抛出错误,我在neo4j.properties中启用了自动索引为true,如何解决问题?
答案 0 :(得分:1)
您可以配置conf/neo4j.properties
使用:
# Enable auto-indexing for nodes, default is false
node_auto_indexing=true
# The node property keys to be auto-indexed, if enabled
node_keys_indexable=name
并重新索引您的数据库,例如通过分页遍历数据库,在0处启动skip
并在每次运行时将其增加50000:
start n=node(*)
where has(n.name)
with n
skip 150000 limit 50000
set n.name = n.name