如何高效地将一个 Neo4j 数据库导出到另一个数据库?
有两个neo4j数据库A和B,我想将A追加到B。如何处理?
Having two neo4j database A and B, I want to append A with B. How to deal with it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有用过这个,但今天早上在调查 gremlin 时遇到了它。
http://tinkerpop .com/maven2/com/tinkerpop/blueprints/0.5/api/com/tinkerpop/blueprints/pgm/util/GraphHelper.html
查看 copyGraph(Graph from, Graph to)
将一个图的顶点/边复制到另一个图。
i have NOT used this, but came across it this morning investigating gremlin.
http://tinkerpop.com/maven2/com/tinkerpop/blueprints/0.5/api/com/tinkerpop/blueprints/pgm/util/GraphHelper.html
check out the copyGraph(Graph from, Graph to)
Copy the vertex/edges of one graph over to another graph.