mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Merge pull request #607 from tpayet/add-separators-tokenizer
Add '@' char as a tokenizer separator
This commit is contained in:
commit
10d047a636
@ -1,3 +1,7 @@
|
|||||||
|
## v0.10.1 (unreleased)
|
||||||
|
|
||||||
|
- Add '@' character as tokenizer separator (#607)
|
||||||
|
|
||||||
## v0.10
|
## v0.10
|
||||||
|
|
||||||
- Refined filtering (#592)
|
- Refined filtering (#592)
|
||||||
|
@ -54,7 +54,7 @@ fn classify_separator(c: char) -> Option<SeparatorCategory> {
|
|||||||
c if c.is_whitespace() => Some(Soft), // whitespaces
|
c if c.is_whitespace() => Some(Soft), // whitespaces
|
||||||
c if deunicode_char(c) == Some("'") => Some(Soft), // quotes
|
c if deunicode_char(c) == Some("'") => Some(Soft), // quotes
|
||||||
c if deunicode_char(c) == Some("\"") => Some(Soft), // double quotes
|
c if deunicode_char(c) == Some("\"") => Some(Soft), // double quotes
|
||||||
'-' | '_' | '\'' | ':' | '/' | '\\' => Some(Soft),
|
'-' | '_' | '\'' | ':' | '/' | '\\' | '@' => Some(Soft),
|
||||||
'.' | ';' | ',' | '!' | '?' | '(' | ')' => Some(Hard),
|
'.' | ';' | ',' | '!' | '?' | '(' | ')' => Some(Hard),
|
||||||
_ => None,
|
_ => None,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user