gpt4 book ai didi

go - 将地理位置搜索查询与距离过滤器/排序相结合的任何示例?

转载 作者:IT王子 更新时间:2023-10-29 01:43:43 25 4
gpt4 key购买 nike

我正在使用 gocb 根据地理位置查询文档。到目前为止,NewGeoDistanceQuery 与索引配合得很好。现在我需要根据地理位置距离对结果进行排序。根据 here 中的文档,它说我需要在查询中传递排序参数!但是 NewGeoDistanceQuery 没有。所以搜索了 sdk 并找到了 NewSearchSortGeoDistance 这正是我正在寻找的,但我对如何组合它们感到困惑。

    location := cbft.NewGeoDistanceQuery(in.Lat, in.Lon, fmt.Sprintf("%skm", in.Distance))
sort := cbft.NewSearchSortGeoDistance("address", in.Lat, in.Lon).Unit("km")
conjunctionQuery = cbft.NewConjunctionQuery(location, sort)

我尝试了上面的解决方案,但出现了这个错误

{"error":"rest_index: Query, indexName: restaurant-geo-search, err: bleve: QueryBleve parsing searchRequest, err: unknown query type","request":{"ctl":{"timeout":75000},"query":{"conjuncts":[{"distance":"2km","location":[90.404272,23.793993]},{"by":"geo_distance","field":"address","location":[90.404272,23.793993],"unit":"km"}]},"size":100},"status":"fail"}

我也曾尝试单独使用 NewSearchSortGeoDistance 但同样的错误。有什么帮助吗?

最佳答案

我已经在 https://forums.couchbase.com/t/any-example-for-combining-geo-location-search-query-with-distance-filter-sorting/21155 回复了但也只是将所有信息放在这里:

我认为这里的问题是您试图将排序顺序用作查询,而不是排序标准。我认为您想要的可能是 gocb.NewSearchQuery(indexName, location).Sort(sort) 。这将采用排序标准并将其放入 sort 字段下的 JSON 请求中,如您在我们的文档中所见。

关于go - 将地理位置搜索查询与距离过滤器/排序相结合的任何示例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55887601/

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