Jean Christophe Roy
Jean Christophe Roy
Yeah mixing acronym and consecutive letters in query don't work well. There's an heuristic that try to determine if you want acronym or consecutive letters and you'll confuse it. `eloc`...
The problem is something like 'ed' vs 'edit database' the d is ambiguous so we compare two dumb strategy : consecutive letter and consecutive acronym to take a decision. Mixing...
Edlo count as two segment of two letters, we are not able to teleport while counting consecutive.(we do count consecutive in real space and acronym space and take the vest...
First, before making large change to algorithm I try to evaluate how far are we from a solution. In this particular case, typing one or two letters `edlo` => `edloca`...
I'll add thank you for the time you put into these report. Even if I don't see an obvious solution now I keep those in mind for later.
Hi > I'll train to use longer consecutive matches instead of acronyms. One way that works well is typing all the acronym first letters, then if you need more refinement,...
Ok what kind of structure do you have ? Array of string ? Array of object on which you query a key ? I've never worked with immutable.js but we...
I'm thinking of providing a callback that could be used in a map like function. var cb = fz.callBackFor(query,option) ImmutableCollectionOfCandidate.map( cb ).filter( .. ).sort( .. ) Altougth sorted probably need...
This is how I iterate over the list and extract the key to be ranked https://github.com/jeancroy/fuzzaldrin-plus/blob/master/src/filter.coffee#L16-L17 I could provide a "getterFunc" in the optionHash that input the element and output...
I'm looking at the Immutable documentation > If you need to apply a series of mutations locally before returning, Immutable gives you the ability to create a temporary mutable (transient)...