我在让我的自动索引工作时遇到了一些麻烦。
当 neo4j 服务停止时,我更改了 neo4j.properties 文件并设置:#node_auto_indexing=true
然后像这样键入我的索引键:#node_keys_indexable=Name,Type,GUID,CurrentVersion,DateTimeCreated,CurrentVersionDateTimeCreated,VersionCount,CustomerName,DocumentReferece,Version
.
然后我再次启动服务并执行以下操作:
neo4j-sh (0)$ index --create node_auto_index -t Node
然后我创建了一些节点并运行了以下查询:
neo4j-sh (0)$ start n = node:node_auto_index(Name = "Quote") return n;
结果是:
==> +---+
==> | n |
==> +---+
==> +---+
==> 0 row
==> 237 ms
我正在将 neo4j-advanced-2.0.0-M02 与用于 .NET 和 C# 的 Neo4jClient 一起使用。我在这里做错了什么,或者我可能缺少任何其他配置步骤。