mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-31 10:50:03 +00:00
Fix code visibility issue + unimplemented detail in proximity rule
This commit is contained in:
@ -98,20 +98,6 @@ pub struct RankingRuleOutput<Q> {
|
||||
pub candidates: RoaringBitmap,
|
||||
}
|
||||
|
||||
#[allow(unused)]
|
||||
pub fn get_start_universe<'transaction>(
|
||||
index: &Index,
|
||||
txn: &'transaction RoTxn,
|
||||
db_cache: &mut DatabaseCache<'transaction>,
|
||||
query_graph: &QueryGraph,
|
||||
term_matching_strategy: TermsMatchingStrategy,
|
||||
// filters: Filters,
|
||||
) -> Result<RoaringBitmap> {
|
||||
// TODO: actually compute the universe from the query graph
|
||||
let universe = index.documents_ids(txn).unwrap();
|
||||
Ok(universe)
|
||||
}
|
||||
|
||||
// TODO: can make it generic over the query type (either query graph or placeholder) fairly easily
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn execute_search<'transaction>(
|
||||
|
Reference in New Issue
Block a user