我想使用Java将一些顶点和边插入到OrientDB中。 我该怎么办? 这样做有一个宁静的api呼叫吗?
答案 0 :(得分:1)
从Java开始,最简单的方法是使用本机驱动程序:
OrientGraph g = new OrientGraph("remote:localhost/yourDb");
Vertex v1 = g.addVertex("class:YourClass");
v1.setProperty("name", "foo");
v1.setProperty("surname", "bar");
Vertex v2 = g.addVertex("class:YourClass");
v1.addEdge("YourEdgeClass", v2)
g.shutdown();
对于大量插入,您也可以使用OGraphBatchInsert(有一些限制)。
当然还有一个REST API,请看一下这个http://orientdb.com/docs/last/OrientDB-REST.html