mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 18:17:39 +08:00
feat: Consider the last query word be a prefix
if the last word is not followed by a space.
This commit is contained in:
parent
f97f7f93f3
commit
df2b6a3e74
@ -1,7 +1,7 @@
|
||||
use std::{mem, vec, str, char};
|
||||
use std::ops::{Deref, Range};
|
||||
use std::error::Error;
|
||||
use std::hash::Hash;
|
||||
use std::{mem, vec, str};
|
||||
|
||||
use group_by::GroupByMut;
|
||||
use hashbrown::HashMap;
|
||||
@ -16,15 +16,21 @@ use crate::{Match, DocumentId};
|
||||
use crate::rank::Document;
|
||||
|
||||
fn split_whitespace_automatons(query: &str) -> Vec<DfaExt> {
|
||||
let has_end_whitespace = query.chars().last().map_or(false, char::is_whitespace);
|
||||
let mut automatons = Vec::new();
|
||||
let mut words = query.split_whitespace().map(str::to_lowercase).peekable();
|
||||
|
||||
while let Some(word) = words.next() {
|
||||
let lev = match words.peek() {
|
||||
Some(_) => automaton::build_dfa(&word),
|
||||
None => automaton::build_prefix_dfa(&word),
|
||||
|
||||
let has_following_word = words.peek().is_some();
|
||||
let lev = if has_following_word || has_end_whitespace {
|
||||
automaton::build_dfa(&word)
|
||||
} else {
|
||||
automaton::build_prefix_dfa(&word)
|
||||
};
|
||||
automatons.push(lev);
|
||||
}
|
||||
|
||||
automatons
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user