如何在orientdb中创建索引(本机java api)

时间:2016-07-26 20:46:34

标签: orientdb

当图表开始增长时,我收到以下警告:

'bertex = false' fetched more than 50000 records: to speed up the execution, create an index or change the query to use an existent index

有没有办法从java api创建索引?

我似乎找不到合适的javadoc。

非常感谢!

1 个答案:

答案 0 :(得分:2)

试试这个:

graph.createKeyIndex("name", Vertex.class, new Parameter("type", "UNIQUE"));

有关详细信息,请查看以下链接:http://orientdb.com/docs/2.1/Graph-Database-Tinkerpop.html#using-indices

希望它有所帮助。

此致