2023-03-30 16:10:10 +02:00
|
|
|
use std::fmt;
|
2024-03-28 11:50:53 +01:00
|
|
|
use std::sync::Arc;
|
2023-03-30 16:10:10 +02:00
|
|
|
|
|
|
|
use levenshtein_automata::{LevenshteinAutomatonBuilder as LevBuilder, DFA};
|
|
|
|
use once_cell::sync::Lazy;
|
|
|
|
use roaring::bitmap::RoaringBitmap;
|
|
|
|
|
2023-05-29 15:32:09 +02:00
|
|
|
pub use self::facet::{FacetDistribution, Filter, OrderBy, DEFAULT_VALUES_PER_FACET};
|
2023-10-30 11:00:46 +01:00
|
|
|
pub use self::new::matches::{FormatOptions, MatchBounds, MatcherBuilder, MatchingWords};
|
2023-11-15 15:46:37 +01:00
|
|
|
use self::new::{execute_vector_search, PartialSearchResult};
|
2023-06-06 18:26:33 +02:00
|
|
|
use crate::score_details::{ScoreDetails, ScoringStrategy};
|
2024-03-28 11:50:53 +01:00
|
|
|
use crate::vector::Embedder;
|
2023-03-23 09:35:53 +01:00
|
|
|
use crate::{
|
2024-03-13 10:24:21 +01:00
|
|
|
execute_search, filtered_universe, AscDesc, DefaultSearchLogger, DocumentId, Index, Result,
|
2024-03-05 11:21:46 +01:00
|
|
|
SearchContext, TimeBudget,
|
2023-03-23 09:35:53 +01:00
|
|
|
};
|
2021-06-15 11:51:32 +02:00
|
|
|
|
2020-11-20 10:54:41 +01:00
|
|
|
// Building these factories is not free.
|
|
|
|
static LEVDIST0: Lazy<LevBuilder> = Lazy::new(|| LevBuilder::new(0, true));
|
|
|
|
static LEVDIST1: Lazy<LevBuilder> = Lazy::new(|| LevBuilder::new(1, true));
|
|
|
|
static LEVDIST2: Lazy<LevBuilder> = Lazy::new(|| LevBuilder::new(2, true));
|
|
|
|
|
2022-08-31 13:03:36 +02:00
|
|
|
pub mod facet;
|
2022-03-15 17:28:57 +01:00
|
|
|
mod fst_utils;
|
2023-11-15 15:46:37 +01:00
|
|
|
pub mod hybrid;
|
2023-02-21 09:40:41 +01:00
|
|
|
pub mod new;
|
2020-11-20 10:54:41 +01:00
|
|
|
|
2024-03-28 11:50:53 +01:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct SemanticSearch {
|
|
|
|
vector: Option<Vec<f32>>,
|
|
|
|
embedder_name: String,
|
|
|
|
embedder: Arc<Embedder>,
|
|
|
|
}
|
|
|
|
|
2020-11-20 10:54:41 +01:00
|
|
|
pub struct Search<'a> {
|
|
|
|
query: Option<String>,
|
2021-10-22 01:59:38 +02:00
|
|
|
// this should be linked to the String in the query
|
2021-10-22 14:33:18 +02:00
|
|
|
filter: Option<Filter<'a>>,
|
2020-11-20 10:54:41 +01:00
|
|
|
offset: usize,
|
|
|
|
limit: usize,
|
2021-08-23 11:37:18 +02:00
|
|
|
sort_criteria: Option<Vec<AscDesc>>,
|
2023-06-07 11:24:40 +02:00
|
|
|
searchable_attributes: Option<&'a [String]>,
|
2023-04-13 13:45:34 +02:00
|
|
|
geo_strategy: new::GeoSortStrategy,
|
2022-08-22 17:37:36 +02:00
|
|
|
terms_matching_strategy: TermsMatchingStrategy,
|
2023-06-06 18:26:33 +02:00
|
|
|
scoring_strategy: ScoringStrategy,
|
2021-04-13 19:10:58 +02:00
|
|
|
words_limit: usize,
|
2022-07-12 17:56:50 +02:00
|
|
|
exhaustive_number_hits: bool,
|
2020-11-20 10:54:41 +01:00
|
|
|
rtxn: &'a heed::RoTxn<'a>,
|
|
|
|
index: &'a Index,
|
2024-03-28 11:50:53 +01:00
|
|
|
semantic: Option<SemanticSearch>,
|
2024-03-05 11:21:46 +01:00
|
|
|
time_budget: TimeBudget,
|
2020-11-20 10:54:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Search<'a> {
|
|
|
|
pub fn new(rtxn: &'a heed::RoTxn, index: &'a Index) -> Search<'a> {
|
2021-03-10 11:16:30 +01:00
|
|
|
Search {
|
|
|
|
query: None,
|
2021-06-01 15:25:17 +02:00
|
|
|
filter: None,
|
2021-03-10 11:16:30 +01:00
|
|
|
offset: 0,
|
|
|
|
limit: 20,
|
2021-08-23 11:37:18 +02:00
|
|
|
sort_criteria: None,
|
2023-05-31 14:57:46 +02:00
|
|
|
searchable_attributes: None,
|
2023-04-13 13:45:34 +02:00
|
|
|
geo_strategy: new::GeoSortStrategy::default(),
|
2022-08-22 17:37:36 +02:00
|
|
|
terms_matching_strategy: TermsMatchingStrategy::default(),
|
2023-06-06 18:26:33 +02:00
|
|
|
scoring_strategy: Default::default(),
|
2022-07-12 17:56:50 +02:00
|
|
|
exhaustive_number_hits: false,
|
2021-04-13 19:10:58 +02:00
|
|
|
words_limit: 10,
|
2021-03-10 11:16:30 +01:00
|
|
|
rtxn,
|
|
|
|
index,
|
2024-03-28 11:50:53 +01:00
|
|
|
semantic: None,
|
2024-03-05 11:21:46 +01:00
|
|
|
time_budget: TimeBudget::max(),
|
2021-03-10 11:16:30 +01:00
|
|
|
}
|
2020-11-20 10:54:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn query(&mut self, query: impl Into<String>) -> &mut Search<'a> {
|
|
|
|
self.query = Some(query.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2024-03-28 11:50:53 +01:00
|
|
|
pub fn semantic(
|
|
|
|
&mut self,
|
|
|
|
embedder_name: String,
|
|
|
|
embedder: Arc<Embedder>,
|
|
|
|
vector: Option<Vec<f32>>,
|
|
|
|
) -> &mut Search<'a> {
|
|
|
|
self.semantic = Some(SemanticSearch { embedder_name, embedder, vector });
|
2023-06-08 18:47:06 +02:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-11-20 10:54:41 +01:00
|
|
|
pub fn offset(&mut self, offset: usize) -> &mut Search<'a> {
|
|
|
|
self.offset = offset;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn limit(&mut self, limit: usize) -> &mut Search<'a> {
|
|
|
|
self.limit = limit;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-08-23 11:37:18 +02:00
|
|
|
pub fn sort_criteria(&mut self, criteria: Vec<AscDesc>) -> &mut Search<'a> {
|
|
|
|
self.sort_criteria = Some(criteria);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2023-06-07 11:24:40 +02:00
|
|
|
pub fn searchable_attributes(&mut self, searchable: &'a [String]) -> &mut Search<'a> {
|
2023-05-31 14:57:46 +02:00
|
|
|
self.searchable_attributes = Some(searchable);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2022-08-22 17:37:36 +02:00
|
|
|
pub fn terms_matching_strategy(&mut self, value: TermsMatchingStrategy) -> &mut Search<'a> {
|
|
|
|
self.terms_matching_strategy = value;
|
2021-03-10 11:16:30 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2023-06-06 18:26:33 +02:00
|
|
|
pub fn scoring_strategy(&mut self, value: ScoringStrategy) -> &mut Search<'a> {
|
|
|
|
self.scoring_strategy = value;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-04-13 19:10:58 +02:00
|
|
|
pub fn words_limit(&mut self, value: usize) -> &mut Search<'a> {
|
|
|
|
self.words_limit = value;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-10-22 14:33:18 +02:00
|
|
|
pub fn filter(&mut self, condition: Filter<'a>) -> &mut Search<'a> {
|
2021-06-01 15:25:17 +02:00
|
|
|
self.filter = Some(condition);
|
2020-11-20 10:54:41 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2023-04-13 13:45:34 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
pub fn geo_sort_strategy(&mut self, strategy: new::GeoSortStrategy) -> &mut Search<'a> {
|
|
|
|
self.geo_strategy = strategy;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2023-06-06 18:26:33 +02:00
|
|
|
/// Forces the search to exhaustively compute the number of candidates,
|
2022-10-17 14:41:57 +02:00
|
|
|
/// this will increase the search time but allows finite pagination.
|
2022-07-12 17:56:50 +02:00
|
|
|
pub fn exhaustive_number_hits(&mut self, exhaustive_number_hits: bool) -> &mut Search<'a> {
|
|
|
|
self.exhaustive_number_hits = exhaustive_number_hits;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2024-03-05 11:21:46 +01:00
|
|
|
pub fn time_budget(&mut self, time_budget: TimeBudget) -> &mut Search<'a> {
|
|
|
|
self.time_budget = time_budget;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2023-12-14 16:01:35 +01:00
|
|
|
pub fn execute_for_candidates(&self, has_vector_search: bool) -> Result<RoaringBitmap> {
|
|
|
|
if has_vector_search {
|
2024-05-07 17:56:40 +02:00
|
|
|
let ctx = SearchContext::new(self.index, self.rtxn)?;
|
2023-12-14 16:01:35 +01:00
|
|
|
filtered_universe(&ctx, &self.filter)
|
|
|
|
} else {
|
|
|
|
Ok(self.execute()?.candidates)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-14 16:46:19 +02:00
|
|
|
pub fn execute(&self) -> Result<SearchResult> {
|
2024-05-07 17:56:40 +02:00
|
|
|
let mut ctx = SearchContext::new(self.index, self.rtxn)?;
|
2023-06-13 14:42:38 +02:00
|
|
|
|
|
|
|
if let Some(searchable_attributes) = self.searchable_attributes {
|
|
|
|
ctx.searchable_attributes(searchable_attributes)?;
|
|
|
|
}
|
|
|
|
|
2023-11-15 15:46:37 +01:00
|
|
|
let universe = filtered_universe(&ctx, &self.filter)?;
|
2024-03-05 11:21:46 +01:00
|
|
|
let PartialSearchResult {
|
|
|
|
located_query_terms,
|
|
|
|
candidates,
|
|
|
|
documents_ids,
|
|
|
|
document_scores,
|
|
|
|
degraded,
|
2024-03-26 18:01:27 +01:00
|
|
|
used_negative_operator,
|
2024-03-28 11:50:53 +01:00
|
|
|
} = match self.semantic.as_ref() {
|
|
|
|
Some(SemanticSearch { vector: Some(vector), embedder_name, embedder }) => {
|
|
|
|
execute_vector_search(
|
|
|
|
&mut ctx,
|
|
|
|
vector,
|
|
|
|
self.scoring_strategy,
|
|
|
|
universe,
|
|
|
|
&self.sort_criteria,
|
|
|
|
self.geo_strategy,
|
|
|
|
self.offset,
|
|
|
|
self.limit,
|
|
|
|
embedder_name,
|
|
|
|
embedder,
|
|
|
|
self.time_budget.clone(),
|
|
|
|
)?
|
|
|
|
}
|
|
|
|
_ => execute_search(
|
2024-03-05 11:21:46 +01:00
|
|
|
&mut ctx,
|
|
|
|
self.query.as_deref(),
|
|
|
|
self.terms_matching_strategy,
|
|
|
|
self.scoring_strategy,
|
|
|
|
self.exhaustive_number_hits,
|
|
|
|
universe,
|
|
|
|
&self.sort_criteria,
|
|
|
|
self.geo_strategy,
|
|
|
|
self.offset,
|
|
|
|
self.limit,
|
|
|
|
Some(self.words_limit),
|
|
|
|
&mut DefaultSearchLogger,
|
|
|
|
&mut DefaultSearchLogger,
|
2024-03-14 17:34:46 +01:00
|
|
|
self.time_budget.clone(),
|
2024-03-05 11:21:46 +01:00
|
|
|
)?,
|
|
|
|
};
|
2023-04-06 15:02:23 +02:00
|
|
|
|
|
|
|
// consume context and located_query_terms to build MatchingWords.
|
|
|
|
let matching_words = match located_query_terms {
|
|
|
|
Some(located_query_terms) => MatchingWords::new(ctx, located_query_terms),
|
|
|
|
None => MatchingWords::default(),
|
|
|
|
};
|
|
|
|
|
2024-03-26 18:01:27 +01:00
|
|
|
Ok(SearchResult {
|
|
|
|
matching_words,
|
|
|
|
candidates,
|
|
|
|
document_scores,
|
|
|
|
documents_ids,
|
|
|
|
degraded,
|
|
|
|
used_negative_operator,
|
|
|
|
})
|
2020-11-20 10:54:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for Search<'_> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2021-03-10 11:16:30 +01:00
|
|
|
let Search {
|
|
|
|
query,
|
2021-06-01 15:25:17 +02:00
|
|
|
filter,
|
2021-03-10 11:16:30 +01:00
|
|
|
offset,
|
|
|
|
limit,
|
2021-08-23 11:37:18 +02:00
|
|
|
sort_criteria,
|
2023-05-31 14:57:46 +02:00
|
|
|
searchable_attributes,
|
2023-04-13 13:45:34 +02:00
|
|
|
geo_strategy: _,
|
2022-08-22 17:37:36 +02:00
|
|
|
terms_matching_strategy,
|
2023-06-06 18:26:33 +02:00
|
|
|
scoring_strategy,
|
2021-04-13 19:10:58 +02:00
|
|
|
words_limit,
|
2022-07-12 17:56:50 +02:00
|
|
|
exhaustive_number_hits,
|
2021-03-10 11:16:30 +01:00
|
|
|
rtxn: _,
|
|
|
|
index: _,
|
2024-03-28 11:50:53 +01:00
|
|
|
semantic,
|
2024-03-05 11:21:46 +01:00
|
|
|
time_budget,
|
2021-03-10 11:16:30 +01:00
|
|
|
} = self;
|
2020-11-20 10:54:41 +01:00
|
|
|
f.debug_struct("Search")
|
2020-11-22 15:40:11 +01:00
|
|
|
.field("query", query)
|
2023-06-08 18:47:06 +02:00
|
|
|
.field("vector", &"[...]")
|
2021-06-01 15:25:17 +02:00
|
|
|
.field("filter", filter)
|
2020-11-22 15:40:11 +01:00
|
|
|
.field("offset", offset)
|
|
|
|
.field("limit", limit)
|
2021-08-23 11:37:18 +02:00
|
|
|
.field("sort_criteria", sort_criteria)
|
2023-05-31 14:57:46 +02:00
|
|
|
.field("searchable_attributes", searchable_attributes)
|
2022-08-22 17:37:36 +02:00
|
|
|
.field("terms_matching_strategy", terms_matching_strategy)
|
2023-06-06 18:26:33 +02:00
|
|
|
.field("scoring_strategy", scoring_strategy)
|
2022-07-12 17:56:50 +02:00
|
|
|
.field("exhaustive_number_hits", exhaustive_number_hits)
|
2021-04-13 19:10:58 +02:00
|
|
|
.field("words_limit", words_limit)
|
2024-03-28 11:50:53 +01:00
|
|
|
.field(
|
|
|
|
"semantic.embedder_name",
|
|
|
|
&semantic.as_ref().map(|semantic| &semantic.embedder_name),
|
|
|
|
)
|
2024-03-19 14:49:15 +01:00
|
|
|
.field("time_budget", time_budget)
|
2020-11-20 10:54:41 +01:00
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-06 17:50:47 +01:00
|
|
|
#[derive(Default, Debug)]
|
2020-11-20 10:54:41 +01:00
|
|
|
pub struct SearchResult {
|
2021-02-24 17:44:35 +01:00
|
|
|
pub matching_words: MatchingWords,
|
2020-12-28 19:08:53 +01:00
|
|
|
pub candidates: RoaringBitmap,
|
2020-11-20 10:54:41 +01:00
|
|
|
pub documents_ids: Vec<DocumentId>,
|
2023-06-06 18:26:33 +02:00
|
|
|
pub document_scores: Vec<Vec<ScoreDetails>>,
|
2024-03-05 11:21:46 +01:00
|
|
|
pub degraded: bool,
|
2024-03-26 18:01:27 +01:00
|
|
|
pub used_negative_operator: bool,
|
2020-11-20 10:54:41 +01:00
|
|
|
}
|
2021-03-03 12:03:31 +01:00
|
|
|
|
2022-08-18 17:36:08 +02:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
|
|
pub enum TermsMatchingStrategy {
|
|
|
|
// remove last word first
|
|
|
|
Last,
|
|
|
|
// all words are mandatory
|
|
|
|
All,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for TermsMatchingStrategy {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::Last
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-20 18:35:11 +01:00
|
|
|
fn get_first(s: &str) -> &str {
|
|
|
|
match s.chars().next() {
|
|
|
|
Some(c) => &s[..c.len_utf8()],
|
2022-01-25 10:06:27 +01:00
|
|
|
None => panic!("unexpected empty query"),
|
2022-01-20 18:35:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-24 17:44:35 +01:00
|
|
|
pub fn build_dfa(word: &str, typos: u8, is_prefix: bool) -> DFA {
|
|
|
|
let lev = match typos {
|
|
|
|
0 => &LEVDIST0,
|
|
|
|
1 => &LEVDIST1,
|
|
|
|
_ => &LEVDIST2,
|
|
|
|
};
|
|
|
|
|
|
|
|
if is_prefix {
|
|
|
|
lev.build_prefix_dfa(word)
|
|
|
|
} else {
|
|
|
|
lev.build_dfa(word)
|
|
|
|
}
|
|
|
|
}
|
2022-03-31 09:54:49 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2023-05-04 15:46:11 +02:00
|
|
|
#[allow(unused_imports)]
|
2022-03-31 09:54:49 +02:00
|
|
|
use super::*;
|
|
|
|
|
2023-04-24 00:26:08 +02:00
|
|
|
#[cfg(feature = "japanese")]
|
2023-02-01 18:39:54 +01:00
|
|
|
#[test]
|
|
|
|
fn test_kanji_language_detection() {
|
2023-05-04 15:46:11 +02:00
|
|
|
use crate::index::tests::TempIndex;
|
|
|
|
|
2023-02-01 18:39:54 +01:00
|
|
|
let index = TempIndex::new();
|
|
|
|
|
|
|
|
index
|
|
|
|
.add_documents(documents!([
|
|
|
|
{ "id": 0, "title": "The quick (\"brown\") fox can't jump 32.3 feet, right? Brr, it's 29.3°F!" },
|
|
|
|
{ "id": 1, "title": "東京のお寿司。" },
|
|
|
|
{ "id": 2, "title": "הַשּׁוּעָל הַמָּהִיר (״הַחוּם״) לֹא יָכוֹל לִקְפֹּץ 9.94 מֶטְרִים, נָכוֹן? ברר, 1.5°C- בַּחוּץ!" }
|
|
|
|
]))
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let txn = index.write_txn().unwrap();
|
|
|
|
let mut search = Search::new(&txn, &index);
|
|
|
|
|
|
|
|
search.query("東京");
|
|
|
|
let SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
|
|
|
assert_eq!(documents_ids, vec![1]);
|
|
|
|
}
|
2022-03-31 09:54:49 +02:00
|
|
|
}
|