自動インデックス作成に問題があります。
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
.NET および C# 用の Neo4jClient で neo4j-advanced-2.0.0-M02 を使用しています。ここで間違っていることはありますか、それとも他の構成手順が欠けている可能性がありますか。