2

我正在使用 gocb 根据地理位置查询文档。到目前为止 NewGeoDistanceQuery,该索引运行良好。现在我需要根据地理位置距离对结果进行排序。根据此处的文档 ,它说我需要在查询中传递排序参数!但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单独但相同的错误。对此有什么帮助吗?

4

1 回答 1

1

我已在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 请求中,如您在我们的文档中所见。

于 2019-04-29T08:04:49.783 回答