是否可以在 Titan 中索引标签?

Is it possible to index labels in Titan?

当我 运行 这样的查询时:

g.V().hasLabel("myDefinedLabel").values("myKey").next()

它打印

20:46:30 WARN  com.thinkaurelius.titan.graphdb.transaction.StandardTitanTx  - 
Query requires iterating over all vertices [(~label = myDefinedLabel)].
For better performance, use indexes

所以,我想要解决这个问题,我需要索引标签。有办法吗?

我尝试按照正常程序创建 here in Titan docs 描述的索引,但标签不是索引的常规 属性 键。

假设我想为标签创建复合索引,如何实现?

Titan doesn't allow you to index labels, and according to the devs 他们没有兴趣启用它。