gpt4 book ai didi

java - JanusGraph 地理索引

转载 作者:行者123 更新时间:2023-12-02 10:24:33 24 4
gpt4 key购买 nike

我有这种行为,第一次调用使用 JanusGraph 查询返回值

JG.query().has("geo_shape", Geo.WITHIN,
Geoshape.circle(12, 13, 100.0)).vertices().count()

而下一行不返回结果!

 val c = JG.traversal().V().has("geo_shape",
within(Geoshape.circle(12, 13, 100.0))).count().next()

最佳答案

根据query examples您的查询应该看起来更像这样:

JG.traversal().V().has("geo_shape",
geoWithin(Geoshape.circle(12, 13, 100.0))).count().next()

关于java - JanusGraph 地理索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54073336/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com