我在用户和 uuid 上创建了一个索引
如果我做:
schema.vertexLabel("User").describe()
我得到:
schema.vertexLabel("User").index("byUuid").materialized().by("uuid").add()
当我跑步时:
g.V().hasLabel("User").has("uuid","oneUuid")
索引被正确拾取..
但是当我执行以下操作时:
g.V().or(__.hasLabel("User").has("uuid","oneUuid"), __.hasLabel("User").has("uuid","anotherUUID"))
我正进入(状态:
org.apache.tinkerpop.gremlin.driver.exception.ResponseException:找不到索引来回答查询子句并且 graph.allow_scan 被禁用:
谢谢!