我在列表中有很多节点和边.目前我正在循环遍历列表并使用非常慢的查询插入每个节点.如何使用neo4jclient执行批量插入?
节点对象:
public class myNode { public int id { get; set; } public int floor { get; set; } public double x { get; set; } public double y { get; set; } }
插入节点的当前方法:
public static void addNode(GraphClient client,myNode node,string nodeName) { client.Cypher .Create("(" + nodeName + ":Node {node})") .WithParams(new { node }) .ExecuteWithoutResults(); }
插入节点列表的当前方法:
List<myNode> nodeList; foreach(var elem in nodeList) addNode(client,elem,"foo");
解决方法
您可以传入集合,而不是仅将单个节点传递到Cypher中.根据Neo4j手册
By providing Cypher an array of maps,it will create a node for each map
请参阅在Neo4j Manual v2.2.2中创建多个节点及其属性参数部分.
因此,您的C#代码将变得简化并且应该会更好.
public static void AddNodes(GraphClient client,List<MyNode> nodes) { client.Cypher .Create("(n:Node {nodes})") .WithParams(new { nodes }) .ExecuteWithoutResults(); }
希望有所帮助.