1

我在让我的自动索引工作时遇到了一些麻烦。

当 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 一起使用。我在这里做错了什么,或者我可能缺少任何其他配置步骤。

我尝试了以下 方法1、2

4

1 回答 1

2

你真的#在你的配置文件前面还有几行吗?--因为如果是这样,它们就会被注释掉。您不需要手动创建自动索引。

于 2013-05-09T13:09:14.577 回答