nextapps-de / flexsearch

Next-Generation full text search library for Browser and Node.js
Apache License 2.0
12.53k stars 491 forks source link

Tokenize + charset doesn't work together #262

Open ThomasKientz opened 3 years ago

ThomasKientz commented 3 years ago

I have created a simple index with

searchIndex = new Index({
    language: 'fr',
    tokenize: 'forward',
    charset: 'latin:balance',
  })

When searching for "foo" I don't get any results for "foobar". If I disable charset option, I do get results. Am I missing something ?

Thanks.