如何使用neo4j和gremlin存储树结构
我想使用 Java 中的 Neo4j 本地数据库和 Gremlin 存储以下目录树结构。
(ROOT) / \ Dir2 Dir3 / \ \ Dir4 Dir5 Dir6 / Dir7
我定义了一个方法 StorePath(String path)。
我想要的:当我使用 path = "Root\Dir2\Dir4\Dir7" 调用 StorePath(path) 时,数据应按如下方式存储
Root / Dir2 / Dir4 / Dir7
,其中 Root 和 Dir* 是具有空白边缘的顶点。 请帮我写一下java代码。
I want to store following directory tree structure using neo4j
local database and Gremlin
in Java.
(ROOT) / \ Dir2 Dir3 / \ \ Dir4 Dir5 Dir6 / Dir7
I have defined a method StorePath(String path).
What i want : When i call StorePath(path) with path = "Root\Dir2\Dir4\Dir7" then data should be stored as follows
Root / Dir2 / Dir4 / Dir7
where Root and Dir* are vertices with blank edges.
Please help me with the java code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)