Merge all shard results and return the global top-K.
(&mut self, top_k: usize)
| 93 | |
| 94 | /// Merge all shard results and return the global top-K. |
| 95 | pub fn merge_top_k(&mut self, top_k: usize) -> Vec<VectorHit> { |
| 96 | self.merger.top_k(top_k) |
| 97 | } |
| 98 | |
| 99 | /// Number of shards that have responded. |
| 100 | pub fn response_count(&self) -> usize { |