没有索引边缘标签的GremlinPipeline排序

时间:2014-09-17 09:02:39

标签: titan

我在java中有这个代码

GremlinPipeline gp = new GremlinPipeline();
gp.start(v).inE("hasLabel").outV().order(TransformPipe.Order.DECR).range(start, end);

我没有在Titan中为边缘标签hasLabel建立索引,即使它按正确顺序排序。

  • 那我怎么知道它利用Vertex Centric Approach 在使用GremlinPipeline
  • 它并不关心Titan Indexing?

在titan配置文件中,我指定了query.force-index=true

1 个答案:

答案 0 :(得分:0)

我不知道您使用的是哪个版本的Titan,但在0.5.0使用GremlinPipeline不关心query.force-index=true之前,如果您使用的是Titan api,这将会有效。