You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, our nearest neighbors implementation returns a materialized vec of all values that are within max_distance and max_results, but instead it would be cleaner to just return an iterator. I.e. this loop:
Right now, our nearest neighbors implementation returns a materialized vec of all values that are within
max_distance
andmax_results
, but instead it would be cleaner to just return an iterator. I.e. this loop:geo-index/src/rtree/trait.rs
Lines 195 to 206 in c5300f4
that
results.push(item.0.id >> 1);
should yield instead of return.The text was updated successfully, but these errors were encountered: