RE: Spell checker - limit on number of misspelt words in a search term.

2014-06-23 Thread Dyer, James
I do not believe there is such a setting. Most likely you will need to increase the value for "maxCollationTries" to get it to discover the "correct" combination. Just be sure not to set this too high as queries with a lot of misspelled words (or for something your index simply doesn't have) wi

Re: Spell Checker (DirectSolrSpellChecker) correct settings

2013-06-04 Thread Raheel Hasan
gt; (615) 213-4311 > > > -Original Message- > From: Raheel Hasan [mailto:raheelhasan@gmail.com] > Sent: Monday, June 03, 2013 10:22 AM > To: solr-user@lucene.apache.org > Subject: Re: Spell Checker (DirectSolrSpellChecker) correct settings > > Hi, thanks a

RE: Spell Checker (DirectSolrSpellChecker) correct settings

2013-06-03 Thread Dyer, James
:22 AM To: solr-user@lucene.apache.org Subject: Re: Spell Checker (DirectSolrSpellChecker) correct settings Hi, thanks a lot for the reply. Actually, "Provincial Courtt" is mentioned in many documents (sorry about the type earlier). Secondly, I tried your idea, but not much of help. Th

Re: Spell Checker (DirectSolrSpellChecker) correct settings

2013-06-03 Thread Raheel Hasan
Hi, thanks a lot for the reply. Actually, "Provincial Courtt" is mentioned in many documents (sorry about the type earlier). Secondly, I tried your idea, but not much of help. The issue is very microscopic: 1) When I search for "Provinciaal Courtt" = it only suggests `court` and not "Provincial"

RE: Spell Checker (DirectSolrSpellChecker) correct settings

2013-06-03 Thread Dyer, James
My first guess is that no documents match the query "provinical court". Because you have "spellcheck.maxCollationTries" set to a non-zero value, it will not return these as collations unless the correction will return hits. You can test my theory out by removing "spellcheck.maxCollationTries"

Re: Spell Checker (DirectSolrSpellChecker) correct settings

2013-06-03 Thread Raheel Hasan
Let me repeat the issue in brief: When i search "*Courtt*", I get correct suggestion. But when I try "*Provincial Courtt*", it gives me no suggestions, instead it searches for "Provincial" only. All the config done in my test project is in the original email. Any help would be great... Thanks a

Re: Spell Checker (DirectSolrSpellChecker) correct settings

2013-06-03 Thread Raheel Hasan
anyone? On Fri, May 31, 2013 at 7:37 PM, Raheel Hasan wrote: > Hi guyz, I am new to solr. Here is the thing I have: > > When i search "Courtt", I get correct suggestion saying: > > > > "spellcheck": { > "suggestions": [ > "courtt", >

Re: Spell Checker

2011-08-17 Thread Alexei Martchenko
Config your xml properly, reload your core (or reload solr) then commit. This spellchecker is configured to build on commit true. Everytime you commit something, it will rebuild your dictionary based on the configuration you selected. 2011/8/17 naeluh > so I add spellcheck.build=true to solrconf

Re: Spell Checker

2011-08-17 Thread Alexei Martchenko
No, if you are trying to build a suggester (what It seems to be) please read the url I sent you. You'll need to create the suggester itself and the url handler in your case, to work on that url, just rename it to 2011/8/17 naeluh > so I add spellcheck.build=true to solrconfig.xml just any

Re: Spell Checker

2011-08-17 Thread naeluh
so I add spellcheck.build=true to solrconfig.xml just anywhere and that will wrk? thks very much for your help -- View this message in context: http://lucene.472066.n3.nabble.com/Spell-Checker-tp1914336p3262744.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Spell Checker

2011-08-17 Thread Alexei Martchenko
Its not a file, it's a request handler. you add those in the solrconfig.xml read here plz http://wiki.apache.org/solr/Suggester 2011/8/17 naeluh > Hi Dan, > > I saw this command - > > > http://localhost:8983/solr/spell?q=ANYTHINGHERE&spellcheck=true&spellcheck.collate=true&spellcheck.build=true

RE: Spell Checker

2011-08-17 Thread naeluh
Hi Dan, I saw this command - http://localhost:8983/solr/spell?q=ANYTHINGHERE&spellcheck=true&spellcheck.collate=true&spellcheck.build=true I tried to issue it and got 404 error that I did not have the path /solr/spell Should I add this file and what type of file is it. I got to via he post

RE: Spell Checker

2010-11-17 Thread Eric Martin
-user@lucene.apache.org Subject: Re: Spell Checker See interjected responses below On 11/16/2010 06:14 PM, Eric Martin wrote: > Thanks Dan! Few questions: > > Use a to divert your main text fields to the spell field and > then configure your spell checker to use the "spell" field to

RE: Spell Checker

2010-11-16 Thread Eric Martin
er 16, 2010 5:21 PM To: solr-user@lucene.apache.org Subject: Re: Spell Checker See interjected responses below On 11/16/2010 06:14 PM, Eric Martin wrote: > Thanks Dan! Few questions: > > Use a to divert your main text fields to the spell field and > then configure your spell checker

RE: Spell Checker

2010-11-16 Thread Eric Martin
Ah, I thought I was going nuts. Thanks for clarifying about the Wiki. -Original Message- From: Markus Jelsma [mailto:markus.jel...@openindex.io] Sent: Tuesday, November 16, 2010 5:11 PM To: solr-user@lucene.apache.org Subject: Re: Spell Checker > Hi (again) > > > >

Re: Spell Checker

2010-11-16 Thread Dan Lynn
otally lost on that. I will buy a book here shortly. -Original Message- From: Dan Lynn [mailto:d...@danlynn.com] Sent: Tuesday, November 16, 2010 5:01 PM To: solr-user@lucene.apache.org Subject: Re: Spell Checker I had to deal with spellchecking today a bit. Make sure you are performing

RE: Spell Checker

2010-11-16 Thread Eric Martin
uesday, November 16, 2010 5:01 PM To: solr-user@lucene.apache.org Subject: Re: Spell Checker I had to deal with spellchecking today a bit. Make sure you are performing the analysis step at index-time as such: schema.xml:

Re: Spell Checker

2010-11-16 Thread Markus Jelsma
> Hi (again) > > > > I am looking at the spell checker options: > > > > http://wiki.apache.org/solr/SpellCheckerRequestHandler#Term_Source_Configur > a tion > > > > http://wiki.apache.org/solr/SpellCheckComponent#Use_in_the_Solr_Example > > > > I am looking in my solrconfig.xml and I s

Re: Spell Checker

2010-11-16 Thread Dan Lynn
I had to deal with spellchecking today a bit. Make sure you are performing the analysis step at index-time as such: schema.xml: . multiValued="true"/> From http://wiki.apache.org/solr/SpellCheckingAnalysis: Use

Re: Spell Checker Reloading Issue

2009-01-05 Thread Navdeep
Hi Thanks for the concern, Grant My Issue is resolved. Problem was spell checker was not working after changing the accuracy or number of suggestions in solrconfig.xml file. Solution is:- We have to add "&build=true" in the command so that it should generate the indexes everytime we change t

Re: Spell Checker Reloading Issue

2009-01-05 Thread Grant Ingersoll
Can you describe what "not working" means? You're not getting suggestions or your getting exceptions? Is there any error in your log? If you add &debugQuery=true to your query, does it show that the Spell component was run? (I think it should) Do your logs show the Spell Checker being i

Re: Spell Checker Reloading Issue

2009-01-05 Thread Navdeep
Hi Thanks for your response. Please find the attached. 1) schema.xml and solrconfig.xml In solrconfig.xml file, we are changing the below parts ... PART 1: false false 10 explicit 0.01 statusNa

Re: Spell Checker Reloading Issue

2009-01-05 Thread Grant Ingersoll
Can you share your configuration, or at least the relevant pieces? -Grant On Jan 5, 2009, at 9:24 AM, Navdeep wrote: Hi all we are facing an issue in spell checker with solr server. We are changing the below given attributes of SolrConfig.xml file 1) Accuracy 2) Number of Suggestions we

RE: spell-checker and faceting

2008-07-24 Thread dudes dudes
thanks :) > Date: Thu, 24 Jul 2008 15:09:55 +0530 > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > Subject: Re: spell-checker and faceting > > No, nothing of that sort right now. > > On Thu, Jul 24, 2008 at 2:4

Re: spell-checker and faceting

2008-07-24 Thread Shalin Shekhar Mangar
-- > > Date: Thu, 24 Jul 2008 13:32:05 +0530 > > From: [EMAIL PROTECTED] > > To: solr-user@lucene.apache.org > > Subject: Re: spell-checker and faceting > > > > On Thu, Jul 24, 2008 at 1:24 PM, dudes dudes wrote: > > > >

RE: spell-checker and faceting

2008-07-24 Thread dudes dudes
all the fields that are defined under the schema ? is it possible to use some wild cards ? thanks again. ak > Date: Thu, 24 Jul 2008 13:32:05 +0530 > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > Subject: Re: spell-checker and

Re: spell-checker and faceting

2008-07-24 Thread Shalin Shekhar Mangar
On Thu, Jul 24, 2008 at 1:24 PM, dudes dudes <[EMAIL PROTECTED]> wrote: > > hi, > thanks for your response and suggestions. > > I can get all the facet working now if I issue: > > > http://localhost:8080/solr/spellCheckCompRH?q=smath&spellcheck.q=smath&spellcheck=true&rows=0&facet=true&facet.limit

RE: spell-checker and faceting

2008-07-24 Thread dudes dudes
= "smith "> 2 can this be done in one go ? or the end user has to decide the suggestions and then solr facets them ? many thanks ak > Date: Wed, 23 Jul 2008 08:55:27 -0400 > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org

Re: spell-checker and faceting

2008-07-23 Thread Geoffrey Young
dudes dudes wrote: Hi, I'm trying to couple spell-checking mechanism with faceting in one url statement.. I can get the spell check right, but the facet doesn't work when it's combined with spell-checker... http://localhost:8080/solr/spellCheckCompRH?q=smath&spellcheck.q=smath&spellcheck=tr

RE: spell-checker on solr

2008-07-01 Thread dudes dudes
yes you are quite right ! please accept my apologies too much going on my head ! thanks anyway > Date: Tue, 1 Jul 2008 14:33:42 +0530 > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > Subject: Re: spell-checker on solr >

Re: spell-checker on solr

2008-07-01 Thread Shalin Shekhar Mangar
You asked a similar question a few days ago and you got a few links in the reply. Did you try looking into them? On Tue, Jul 1, 2008 at 1:04 PM, dudes dudes <[EMAIL PROTECTED]> wrote: > > Hello all, > > Does spell-checking done automatically under solr or it needs to be coded in > ? > > any docs

Re: Spell checker index rebuild

2008-01-17 Thread Doug Steigerwald
Seemed to be able to fix the below problem with the following patch in lucene-2.2. Going to try the lucene 2.3 branch. Index: contrib/spellchecker/src/java/org/apache/lucene/search/spell/SpellChecker.java === --- contrib/spellche

Re: Spell checker index rebuild

2008-01-17 Thread Doug Steigerwald
It's in the index. Can see it with a query: q=word:blackjack And in luke: − 29 The actual index data seems to disappear. First rebuild: $ ls spell/ _2.cfs segments.gen segments_i Second rebuild: $ ls spell segments_2z segments.gen doug Otis Gospodnetic wrote: Do you trust the

Re: Spell checker index rebuild

2008-01-16 Thread Otis Gospodnetic
Do you trust the spellchecker 100% (not looking at its source now). I'd peek at the index with Luke (Luke I trust :)) and see if that term is really there first. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Doug Steigerwald <[EMAIL PROTECT