James Kirkby
02/24/2025, 12:45 PM®
character with a space. We've tried following the docs here: https://typesense.org/docs/guide/tips-for-searching-common-types-of-data.html
We've tried using the following schema when creating the collection:
token_separators: ['®']
However the Typesense server gives us the following error (v28)
Error creating collection_name RequestMalformed: Request failed with HTTP code 400 | Server said: `token_separators` should be an array of character symbols.
Example collection data:
[
{
"model": "Product 1 with something"
},
{
"model": "Product®1 with something else"
}
]
Example query:
model="Product 1"
Results:
- Product 1 with something
Expected results:
- Product 1 with something
- Product®1 with something else
Are we going about this the wrong way?