Re: AW: Solr suggestions, best practices

2018-11-19 Thread Alessandro Benedetti
I have done extensive work on auto suggestion, some additional resource from my company blog : https://sease.io/2015/07/solr-you-complete-me.html https://sease.io/2018/06/apache-lucene-blendedinfixsuggester-how-it-works-bugs-and-improvements.

AW: Solr suggestions, best practices

2018-11-08 Thread Clemens Wyss DEV
Thx for the link >Which version of Solr are you using? 7.5 -Ursprüngliche Nachricht- Von: Zheng Lin Edwin Yeo Gesendet: Mittwoch, 7. November 2018 07:50 An: solr-user@lucene.apache.org Betreff: Re: Solr suggestions, best practices Maybe you can look into this: https://lucidworks.

Re: Solr suggestions, best practices

2018-11-06 Thread Zheng Lin Edwin Yeo
Maybe you can look into this: https://lucidworks.com/2015/03/04/solr-suggester/ Which version of Solr are you using? Regards, Edwin On Tue, 6 Nov 2018 at 17:00, Clemens Wyss DEV wrote: > At the moment we are using spellchecking-component for suggestions which > is suboptimal, to say the least.

Solr suggestions, best practices

2018-11-06 Thread Clemens Wyss DEV
At the moment we are using spellchecking-component for suggestions which is suboptimal, to say the least. What are best pracitces for suggestions using Solr? googling (with excellent suggestions 😉) I came along https://blog.trifork.com/2012/02/15/different-ways-to-make-auto-suggestions-with-sol

AW: Solr suggestions: why are exact matches omitted

2018-09-03 Thread Clemens Wyss DEV
then it's a feature of spellchecking -Ursprüngliche Nachricht- Von: Mikhail Khludnev Gesendet: Montag, 3. September 2018 13:17 An: solr-user Betreff: Re: Solr suggestions: why are exact matches omitted I'm afraid only thorough debugging might answer. On Mon, Sep 3, 2018 at 1

Re: Solr suggestions: why are exact matches omitted

2018-09-03 Thread Mikhail Khludnev
Donnerstag, 30. August 2018 18:01 > An: 'solr-user@lucene.apache.org' > Betreff: Solr suggestions: why are exact matches omitted > > Given the following configuration: > ... > > > suggest_word_fuzzy > name="cl

AW: Solr suggestions: why are exact matches omitted

2018-09-03 Thread Clemens Wyss DEV
Sorry for not giving up on this issue: is this "behavior" a feature or a bug? -Ursprüngliche Nachricht- Von: Clemens Wyss DEV Gesendet: Donnerstag, 30. August 2018 18:01 An: 'solr-user@lucene.apache.org' Betreff: Solr suggestions: why are exact matches omitted

AW: Solr suggestions: why are exact matches omitted

2018-08-30 Thread Clemens Wyss DEV
Or do the spellcheck results give an indication that "11000.35" has an exact match? -Ursprüngliche Nachricht- Von: Clemens Wyss DEV Gesendet: Donnerstag, 30. August 2018 18:01 An: 'solr-user@lucene.apache.org' Betreff: Solr suggestions: why are exact matche

Solr suggestions: why are exact matches omitted

2018-08-30 Thread Clemens Wyss DEV
Given the following configuration: ... suggest_word_fuzzy org.apache.solr.spelling.suggest.Suggester org.apache.solr.spelling.suggest.fst.FuzzyLookupFactory true _my_suggest_word 2

Re: How can we incrementally build the solr suggestions

2016-06-02 Thread Erick Erickson
;suggest.build=true&; Best, Erick On Wed, Jun 1, 2016 at 2:54 AM, Subrahmanyam MadhavaBotla wrote: > Hi Team, > > We are using Solr suggestions based on indexed terms. > However, We see only two options for building solr suggestion.. commit... on > start. . > We understand th

How can we incrementally build the solr suggestions

2016-06-01 Thread Subrahmanyam MadhavaBotla
Hi Team, We are using Solr suggestions based on indexed terms. However, We see only two options for building solr suggestion.. commit... on start. . We understand that these will completely rebuild the suggestions every time these are called.. How can we incrementally build the solr suggestions

Re: Scaling Solr - Suggestions !!

2012-04-30 Thread Sujatha Arun
I was copying the indexes from webapp to cores ,when this happened .It could have been an error from my end ,but just worried that an issue with one core would reflect on webapp . Regards Sujatha On Mon, Apr 30, 2012 at 7:20 PM, Erick Erickson wrote: > I'd get to the root of why indexes are cor

Re: Scaling Solr - Suggestions !!

2012-04-30 Thread Erick Erickson
I'd get to the root of why indexes are corrupt! This should be very unusual. If you're seeing this at all frequently, it indicates something is very wrong and starting bunches of JVMs up is a band-aid over a much more serious problem. Are you, by chance, doing a kill -9? or other hard-abort? Best

Re: Scaling Solr - Suggestions !!

2012-04-29 Thread Sujatha Arun
Now the reason ,I have used different webapps instead of a single one for the cores is ,while prototyping ,I discovered that ,when one of the cores index is corrupt ,the entire webapp does not start up and the same must be true of "too many open files" etc ,that is to say if there is an issue with

Re: Scaling Solr - Suggestions !!

2012-04-28 Thread Michael Della Bitta
Just my opinion, but I'm not sure I see the value in deploying the cores to different webapps in a single container on a single machine to avoid a single point of failure... You still have a single point of failure at the process level down to the hardware, which when you think about it, is mostly

Scaling Solr - Suggestions !!

2012-04-28 Thread Sujatha Arun
Hello, *Background* :For each of our customers, we create 3 solr webapps with different search schema's,serving different search requirements and we have about 70 customers.So we have about 210 webapps curently . *Hardware*: Single Server , one JVM , Heap memory 19GB ,Total Ram :32GB , Permgen

RE: Solr suggestions

2011-02-11 Thread Thumuluri, Sai
: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Friday, February 11, 2011 9:53 AM To: solr-user@lucene.apache.org Subject: Re: Solr suggestions Well, you have to tell us how you're accessing the info and what's in your index. Please include the relevant schema file definitio

Re: Solr suggestions

2011-02-11 Thread Erick Erickson
Well, you have to tell us how you're accessing the info and what's in your index. Please include the relevant schema file definitions and the calls you're making to get spelling suggestions. Best Erick On Fri, Feb 11, 2011 at 8:55 AM, Thumuluri, Sai wrote: > Good Morning, > I have implemented S

Solr suggestions

2011-02-11 Thread Thumuluri, Sai
Good Morning, I have implemented Solr 1.4.1 in our UAT environment and I get weird suggestions for any misspellings. For instance when I search for "cabinet award winders" as opposed to "cabinet award winners", I get a suggestion of "cabinet abarc pindeks