10

在 Neo4j v1.9.x 下,我使用了以下代码。

private Category CreateNodeCategory(Category cat)
{
        var node = client.Create(cat,
            new IRelationshipAllowingParticipantNode<Category>[0],
            new[]
            {
                new IndexEntry(NeoConst.IDX_Category)
                {
                    { NeoConst.PRP_Name, cat.Name },
                    { NeoConst.PRP_Guid, cat.Nguid.ToString() }
                }
            });
        cat.Nid = node.Id;
        client.Update<Category>(node, cat);
        return cat;
}

原因是节点 ID 是自动生成的,我可以稍后使用它进行快速查找、其他查询中的起始位等。如下所示:

    private Node<Category> CategoryGet(long nodeId)
    {
        return client.Get<Category>((NodeReference<Category>)nodeId);
    }

这使得以下似乎运作良好。

    public Category CategoryAdd(Category cat)
    {
        cat = CategoryFind(cat);
        if (cat.Nid != 0) { return cat; }
        return CreateNodeCategory(cat);
    }

    public Category CategoryFind(Category cat)
    {
        if (cat.Nid != 0) { return cat; }
        var node = client.Cypher.Start(new { 
    n = Node.ByIndexLookup(NeoConst.IDX_Category, NeoConst.PRP_Name, cat.Name)})
            .Return<Node<Category>>("n")
            .Results.FirstOrDefault();
        if (node != null) { cat = node.Data; }
        return cat;
    }

现在 cypher Wiki、示例和坏习惯建议在所有 CRUD 中使用 .ExecuteWithoutResults()。

所以我的问题是如何为节点 ID 设置自动增量值?

4

1 回答 1

23

首先,对于 Neo4j 2 及更高版本,您始终需要从参考框架“我将如何在 Cypher 中执行此操作?”开始。然后,也只有到那时,你才会担心 C#。

现在,提炼您的问题,听起来您的主要目标是创建一个节点,然后返回对它的引用以进行进一步的工作。

您可以使用以下方法在密码中执行此操作:

CREATE (myNode)
RETURN myNode

在 C# 中,这将是:

var categoryNode = graphClient.Cypher
    .Create("(category {cat})")
    .WithParams(new { cat })
    .Return(cat => cat.Node<Category>())
    .Results
    .Single();

但是CreateNodeCategory,这仍然不是您在原始方法中所做的 100% 。您正在数据库中创建节点,获取 Neo4j 的内部标识符,然后将该标识符保存回同一节点。基本上,您使用 Neo4j 为您生成自动递增的数字。这是功能性的,但不是一个真正的好方法。我会解释更多...

首先,Neo4j 甚至将节点 ID 还给您的概念正在消失。它是一个内部标识符,实际上恰好是磁盘上的文件偏移量。它可以改变。它是低水平的。如果您考虑一下 SQL,您是否使用 SQL 查询来获取行的文件字节偏移量,然后引用它以供将来更新?答:没有;您编写一个查询,一键查找和操作该行。

现在,我注意到您已经Nguid在节点上拥有了一个属性。为什么不能用它作为id?或者,如果名称始终是唯一的,请使用它?(与域相关的 id 总是比幻数更可取。)如果两者都不合适,你可能想看看像SnowMaker这样的项目来帮助你。

接下来,我们需要查看索引。您使用的索引类型在 2.0 文档中被称为“旧版索引”,并且遗漏了一些很酷的 Neo4j 2.0 功能。

对于此答案的其余部分,我将假设您的Category课程如下所示:

public class Category
{
    public Guid UniqueId { get; set; }
    public string Name { get; set; }
}

让我们从创建带有标签的类别节点开始:

var category = new Category { UnqiueId = Guid.NewGuid(), Name = "Spanners" };
graphClient.Cypher
    .Create("(category:Category {category})")
    .WithParams(new { category })
    .ExecuteWithoutResults();

并且,作为一次性操作,让我们在任何带有标签的节点的属性上建立一个基于模式的索引:NameCategory

graphClient.Cypher
    .Create("INDEX ON :Category(Name)")
    .ExecuteWithoutResults();

现在,我们不必担心手动保持索引是最新的。

我们还可以在 上引入索引和唯一约束UniqueId

graphClient.Cypher
    .Create("CONSTRAINT ON (category:Category) ASSERT category.UniqueId IS UNIQUE")
    .ExecuteWithoutResults();

查询现在非常容易:

graphClient.Cypher
    .Match("(c:Category)")
    .Where((Category c) => c.UniqueId == someGuidVariable)
    .Return(c => c.As<Category>())
    .Results
    .Single();

与其查找类别节点,然后再执行另一个查询,只需一次性完成所有操作:

var productsInCategory = graphClient.Cypher
    .Match("(c:Category)<-[:IN_CATEGORY]-(p:Product)")
    .Where((Category c) => c.UniqueId == someGuidVariable)
    .Return(p => p.As<Product>())
    .Results;

如果要更新类别,也可以一次性完成:

graphClient.Cypher
    .Match("(c:Category)")
    .Where((Category c) => c.UniqueId == someGuidVariable)
    .Update("c = {category}")
    .WithParams(new { category })
    .ExecuteWithoutResults();

最后,您CategoryAdd当前的方法 1)执行一次 DB 命中以查找现有节点,2)第二次 DB 命中以创建新节点,3)第三次 DB 命中以更新其上的 ID。MERGE相反,您也可以使用关键字将所有这些压缩到一个调用中:

public Category GetOrCreateCategoryByName(string name)
{
    return graphClient.Cypher
        .WithParams(new {
            name,
            newIdIfRequired = Guid.NewGuid()
        })
        .Merge("(c:Category { Name = {name})")
        .OnCreate("c")
        .Set("c.UniqueId = {newIdIfRequired}")
        .Return(c => c.As<Category>())
        .Results
        .Single();
}

基本上,

  1. 不要使用 Neo4j 的内部 id 来管理自己的身份。(但他们将来可能会发布某种形式的自动编号。即使他们这样做了,诸如电子邮件地址或 SKU 或机场代码之类的域身份也是首选的。您甚至并不总是需要 id:您通常可以推断出节点基于其在图中的位置。)

  2. 一般Node<T>会随着时间消失。如果你现在使用它,你只是在积累遗留代码。

  3. 查看标签和基于模式的索引。他们会让你的生活更轻松。

  4. 尝试在一个查询中做事。它会快得多。

希望有帮助!

于 2013-10-23T07:39:59.850 回答