我正在使用 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
单独但相同的错误。对此有什么帮助吗?