Shawn
11/07/2024, 6:57 PM"token_separators": [
".",
"-",
"/"
]
But I would like to query and by pass the "-" token. How would you do that?
For example I have a filter_by=sku:[1,3400,Kit44] I would like the results to not pull sku's that have "-1" at the end. Example 3400-1. Just get the sku that equals "1" Can this be done? We are running Typesense v0.23.1
LMK thanks!Jason Bosco
11/07/2024, 9:48 PM-
as a token separator then 3400-1
will get indexed as 3400
and 1
separately, so by definition, it will pull up that document for a search query of 1
since that document now has that token standaloneShawn
11/07/2024, 9:57 PM-
as a separator if your trying to match 3400-1
and also a 1
if you want them to be unique.Jason Bosco
11/07/2024, 10:30 PMShawn
11/08/2024, 1:35 PM