Peter Bengtsson

Results 314 comments of Peter Bengtsson

Thanks. I'll try that. Do you still think it's worth keeping this issue or is grouping sub-groups of routes the solid solution?

For now, I desperate add this `.catch()`: ```js program.run().catch((err) => { console.log("ERR:", err); }); ```

Perhaps I'm just not familiar with how it works, but seems that `--verbose` already has a meaning. It changes the how the logger is configured. So perhaps it would make...

If it's not clear the problem is that I see, in the upper right hand corner: ``` SSID: HOME-B9 ``` And both those words are red. What I expect is:...

Actually, if I change my two `data1.title` and `data2.title` to just `Speed` and `Average` then it works:

@WesleyMConner Does this explain why I can't get stemming to work at all? https://github.com/nextapps-de/flexsearch/issues/280

That's a very long story :) I'm not sure how it relates to specifically getting stemmers to work in Node. I managed to get it to work by moving `en.js`...

I had some luck with ```js const index = new Index({language: 'en', tokenize: "forward",stemmer: { // object {key: replacement} "ational": "ate", "s": "", "y": "ies", "tional": "tion", "enci": "ence", "ing":...

Another solution would be to expose a function that allows me to control the score of each document. I imagine, you have 1,000 documents and of them 100 have greater-than-zero...

@ts-thomas Perhaps you can help with a temporary solution. Is there *any way* I can find out the internal score of my search results. Because if I can have the...