Re: Suggester and fuzzy/infix suggestions

2017-06-29 Thread alessandro.benedetti
he current collection. - --- Alessandro Benedetti Search Consultant, R&D Software Engineer, Director Sease Ltd. - www.sease.io -- View this message in context: http://lucene.472066.n3.nabble.com/Suggester-and-fuzzy-infix-suggestions-tp4343225p4343382.html Sent from the Solr - Use

Re: Suggester and fuzzy/infix suggestions

2017-06-28 Thread Walter Underwood
Yes, but it is better than nothing. Don’t let the unavailable perfect solution keep you from implementing the available good solution. If you want to easily use fuzzy search with edismax, check out the patch submitted with SOLR-629. wunder Walter Underwood wun...@wunderwood.org http://observer.

Re: Suggester and fuzzy/infix suggestions

2017-06-28 Thread Student 1
I thought about that - but that does not solve the issue. If the user types in a misspelled word, and that word is somewhere in the middle of the field, that result will not be returned. 2017-06-28 19:00 GMT+02:00 Walter Underwood : > I set up two suggesters, one fuzzy and one analyzing infix. Th

Re: Suggester and fuzzy/infix suggestions

2017-06-28 Thread Walter Underwood
I set up two suggesters, one fuzzy and one analyzing infix. That gives two sets of suggestions, so the client code has to merge them into one list and toss duplicates. They use the same weights, so I can keep the top weighted suggestions. wunder Walter Underwood wun...@wunderwood.org http://obs

Suggester and fuzzy/infix suggestions

2017-06-28 Thread Student 1
Hi, I'm trying to implement suggestions mechanism using Solr Suggester component, that would work like this: - look inside of the field (like AnalyzingInfixLookupFactory does) AND - allow for minor spelling mistakes (like FuzzyLookupFactory does). Is it at all possible? It looks to me, like you