Re: Spellchecker component with multiple cores

2012-07-23 Thread Eduardo Henriques
Hi, I'm facing this same topic, but in my case, I have multiple cores and I want only one spellchecker index from all this cores. If I create a new core and index all documents from the other cores to this new core, and use the new core to implement the spellchecker can be a solution? Currently,

Re: SpellChecker Component

2008-11-12 Thread Grant Ingersoll
See https://issues.apache.org/jira/browse/LUCENE-1417 and http://lucene.markmail.org/message/sktohlgqxcpmpf7z?q=list:org%2Eapache%2Elucene%2Esolr-user+spellchecker+Rennie In short, frequency is the second order sort level. I think it should be made pluggable.A patch would be most welcome.

Re: SpellChecker Component

2008-11-11 Thread Jeff Newburn
Ok. I have managed to get the search component added (You rock Grant). I am having some interesting issues now with the suggestions. We sell shoes online so I am trying to get it to spellcheck for brand name. When I search konverse with spelling on it returns converse correctly however when I s

Re: SpellChecker Component

2008-11-11 Thread Grant Ingersoll
Hi Jeff, A SearchComponent allows you to connect functionality with any Request Handler, allowing you to inline spelling requests (or other things like MoreLikeThis) with your queries, saving you from having to make an extra request. I walk through a lot of this in my article on Solr 1.3