Re: Suggester configuration queries.

2015-07-14 Thread ssharma7...@gmail.com
Alessandro Benedetti, Thanks for the links. Regards, Sachin Vyas. -- View this message in context: http://lucene.472066.n3.nabble.com/Suggester-configuration-queries-tp4214950p4217234.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Suggester configuration queries.

2015-07-13 Thread Alessandro Benedetti
Using the term component to get Auto-suggest is a very old approach, and gives minimal features… If it is ok for you, ok! I would suggest these reading for Auto suggestions : Suggester Solr wiki Solr suggester

Re: Suggester configuration queries.

2015-07-13 Thread ssharma7...@gmail.com
Hi, For my reply dated "Jul 02, 2015; 4:47pm", for my scenario / test data, the results of Spellchecker of Solr 4.6 & 5.1 are fine. Also, the results of Suggester of Solr 4.6 & 5.1 are fine. I was mixing up the two components. Thanks & Regards, Sachin Vyas. -- View this message in context:

Re: Suggester configuration queries.

2015-07-13 Thread ssharma7...@gmail.com
Hi, For my reply dated "Jul 02, 2015; 4:47pm", Actually *there is no difference in results* for "spellchecker" & "suggester" components in Solr 4.6 and Solr 5.1. I was actually mixing up the two components. Thanks & Regards, Sachin Vyas. -- View this message in context: http://lucene.472066.n

Re: Suggester configuration queries.

2015-07-13 Thread ssharma7...@gmail.com
Hi, I am using the Solr Terms Component for auto-suggestion, this provides me the functionality as per my requirements. https://wiki.apache.org/solr/TermsComponent Regards, Sachin Vyas. -- View this message in context: http://lucene.472066.n3.nabble.com/Suggester-configuration-queries-tp4214

Re: Suggester configuration queries.

2015-07-06 Thread ssharma7...@gmail.com
Any Suggestions on this ? Regards, Sachin Vyas. -- View this message in context: http://lucene.472066.n3.nabble.com/Suggester-configuration-queries-tp4214950p4216045.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Suggester configuration queries.

2015-07-02 Thread ssharma7...@gmail.com
Erick, We actaully have a working version of Solr 4.6 Spellchecker, the configuration details are as mentioned below: *Solr 4.6 - schema.xml*

Re: Suggester configuration queries.

2015-07-01 Thread Erick Erickson
that's where I'd start at least. Erick On Wed, Jul 1, 2015 at 6:56 AM, ssharma7...@gmail.com wrote: > Erick, > As per your reply - *"So for your situation, I'd use a copyField to a > minimally-analyzed field > and use the index-based suggesters."* > > Are you suggesting use of "spellCheck" c

Re: Suggester configuration queries.

2015-07-01 Thread ssharma7...@gmail.com
Erick, As per your reply - *"So for your situation, I'd use a copyField to a minimally-analyzed field and use the index-based suggesters."* Are you suggesting use of "spellCheck" component in Solr, and in it "DirectSolrSpellChecker"? Regards, Sachin Vyas. -- View this message in context:

Re: Suggester configuration queries.

2015-06-30 Thread Erick Erickson
This will be pretty much unworkable for any large corpus. The DocumentDictionaryFactory builds its index by reading the stored value from every document in your index to put into a sidecar Solr index (for free text suggester). This can take many minutes so doing this on every commit is an anti-pat