Re: SpellCheckComponent build from search

2009-02-23 Thread Shalin Shekhar Mangar
On Mon, Feb 23, 2009 at 10:47 AM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: You may only need to add a parameter for the query and override the init and build method in IndexBasedSpellChecker. Along with a custom Dictionary implementation. -- Regards, Shalin Shekhar Mangar.

Re: SpellCheckComponent build from search

2009-02-22 Thread Grant Ingersoll
There is no need for a new component, just implement a new SolrSpellChecker. The component itself is not much more than a thin wrapper around an actual implementation. I'm not sure about the scanning though. The Main SC most people use is the Lucene one, and that searches an index that it

Re: SpellCheckComponent build from search

2009-02-22 Thread Shalin Shekhar Mangar
On Sun, Feb 22, 2009 at 7:08 AM, Lance Norskog goks...@gmail.com wrote: The SpellCheckComponent https://issues.apache.org/jira/browse/SOLR-698scans the term database for likely words. This does not scale up to giant indexes. It also does not allow creating separate spelling DBs for subsets

SpellCheckComponent build from search

2009-02-21 Thread Lance Norskog
The SpellCheckComponent https://issues.apache.org/jira/browse/SOLR-698scans the term database for likely words. This does not scale up to giant indexes. It also does not allow creating separate spelling DBs for subsets of the index. I want to create an alternate spell checker implementation that