Jean Christophe Roy
Jean Christophe Roy
@AustP I'll ask a different question. How would you react if you start to type `display.cl` and suddenly a bunch of clojurescript `*.cls` started to pop-up ? I ask because...
I think the issue you see is that once you have a perfect match (query is in the document) we stop there. This library has no concept of thematic. This...
you can use the sorter option and combine the length and the score https://github.com/jeancroy/FuzzySearch/blob/master/src/init.js#L52
I'll be honest, it looks like you want to recommend short paragraph given a thematic. This library was more about find a needle in a haystack. Rigth now machine learning...
> if (d !== 0) return d; I'd use something like `abs(d) < 0.1` or `d*d < 0.01` The thing is the score is a float, but you may find...
If I'm not mistaken he does not have any UI library. The whole UI is built in test.html so you can use that and any engine. Jean Christophe Roy On...
I realize the library I use as an example is a few year olds so if you do some work to integrate that UI I can assist you and end...
Hi, this is an interesting direction, I'll try to assist you achieving it. This is not supported out of the box, but we can probably build it. If you will...
OK so I've done this some time ago so I'll try to use your recent experience to judge things. 1) Fuzzy search is full text search. It's a bit unfortunate...
@i5ik I'd like some timing information on how long does it take you to initialize a fuzzy search object. And maybe how many entries / how many fields by entry...