这是我的问题。 我插入我的Neo4j人员列表(具有唯一标识符)并在它们之间创建关系。
知道此人是否已经存在于Neo4j中然后创建/更新它的最有效方法是什么? 由于Neo4jclient不支持标签,将类型信息存储为节点属性是否更有效,或者最好将相同类型的所有节点链接到此类型的“根节点”?
提前谢谢你,
埃默里克
答案 0 :(得分:1)
Neo4jClient通过标准Cypher支持标签。 (构建1.0.0.602及以上。)
graphClient
.Merge("(p:Person {jim}")
.WithParam("jim", new Person { Name = "Jim" })
.ExecuteWithoutResults();
你也可以退货:
var jimNode = graphClient
.Merge("(p:Person {jim}")
.WithParam("jim", new Person { Name = "Jim" })
.Return(p => p.Node<Person>())
.Results
.Single();
答案 1 :(得分:0)
您可以添加到索引并执行索引查询,因此:
创建索引:
if (!client.CheckIndexExists("Persons", IndexFor.Node))
client.CreateIndex("Persons", new IndexConfiguration {Provider = IndexProvider.lucene, Type = IndexType.exact}, IndexFor.Node);
添加人(带索引条目)
var chris = new Person {Name = "Chris", Id = DateTime.Now.Ticks};
client.Create(chris, null, GetIndexEntries(chris));
GetIndexEntries
的样子:
private static IEnumerable<IndexEntry> GetIndexEntries(Person person)
{
var indexEntries = new List<IndexEntry>
{
new IndexEntry
{
Name = "Persons",
KeyValues = new List<KeyValuePair<string, object>>
{
new KeyValuePair<string, object>("name", person.Name),
new KeyValuePair<string, object>("id", person.Id)
}
}
};
return indexEntries;
}
然后查询索引:
var indexQuery =
client.Cypher
.Start(new {n = Node.ByIndexLookup("Persons", "name", "Chris")})
.Return<Node<Person>>("n");
var results = indexQuery.Results.ToList();
Console.WriteLine("Found {0} results", results.Count());
foreach (var result in results)
Console.WriteLine(result.Data.Id);