mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 10:37:41 +08:00
remove the distance from the search, the computation of the distance will be made on meilisearch side
This commit is contained in:
parent
7ae2a7341c
commit
4f69b190bc
@ -106,8 +106,8 @@ fn geo_point(
|
||||
point: [f64; 2],
|
||||
) -> Box<dyn Iterator<Item = RoaringBitmap>> {
|
||||
let results = rtree
|
||||
.nearest_neighbor_iter_with_distance_2(&point)
|
||||
.filter_map(move |(point, _distance)| candidates.contains(point.data).then(|| point.data))
|
||||
.nearest_neighbor_iter(&point)
|
||||
.filter_map(move |point| candidates.contains(point.data).then(|| point.data))
|
||||
.map(|id| std::iter::once(id).collect::<RoaringBitmap>())
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user