Re: Spellcheck on specified fields?

2020-04-07 Thread TK Solr
Correction. "mark seattle" query doesn't show suggestions since "mark" alone has some hits. It is when the same logic is used for a single term query of "seatle" that 3 suggestions of "seattle" are returned. Do I have to identify the field by using startOffset value? On 4/7/20 3:46 PM, TK Solr

RE: SpellCheck Reload

2018-03-16 Thread Sadiki Latty
detti [mailto:a.benede...@sease.io] Sent: March-15-18 1:34 PM To: solr-user@lucene.apache.org Subject: RE: SpellCheck Reload Hi Sadiki, the kind of spellchecker you are using built an auxiliary Lucene index as a support data structure. That is going to be used to provide the spellcheck suggestions. "M

RE: SpellCheck Reload

2018-03-15 Thread Alessandro Benedetti
Hi Sadiki, the kind of spellchecker you are using built an auxiliary Lucene index as a support data structure. That is going to be used to provide the spellcheck suggestions. "My question is, does "reloading the dictionary" mean completely erasing the current dictionary and starting from scratch (

RE: SpellCheck Reload

2018-03-14 Thread Sadiki Latty
Hello, Just bumping this question up regarding the spellcheck reload. Can anyone provide some insight on this question? Thanks in advance Sid -Original Message- From: Sadiki Latty [mailto:sla...@uottawa.ca] Sent: March-12-18 1:38 PM To: solr-user@lucene.apache.org Subject: SpellCheck

Re: Spellcheck collations results

2018-02-08 Thread Alessandro Benedetti
Given this configurations you may state that if no collation is returned there was no collation returning results after : - getting back a maximum of 7 corrections for mispelled terms - getting a max of 10.000 combinations of collations to extendedResults - test 3 collations against the index to ch

Re: Spellcheck collations results

2018-02-07 Thread Arnold Bronley
Thanks for replying Alessandro. I am passing these parameters: q=polt&spellcheck.q=polt&wt=json&indent=true&spellcheck=true&spellcheck.count=7&spellcheck.onlyMorePopular=true&spellcheck.extendedResults=true&spellcheck.collate=true&spellcheck.maxCollations=3&spellcheck.maxCollationTries=3&spellche

Re: Spellcheck collations results

2018-01-25 Thread alessandro.benedetti
Can you tell us the request parameters used for the spellcheck ? In particular are you using these ? (from the wiki) : " The *spellcheck.maxCollationTries* Parameter This parameter specifies the number of collation possibilities for Solr to try before giving up. Lower values ensure better perform

Re: Spellcheck returning suggestions for words that exist in the dictionary

2017-11-13 Thread Sanjana Sridhar
Hi Alessandro, I'm currently on Solr version 6.2.1, but will soon be moving to 6.6. I'm not using DirectSolrSpellcheck, but using Index and File based. The words I was testing against are definitely available in the File and possibly in the Index as well. What I found was if I don't set the maxRe

Re: Spellcheck returning suggestions for words that exist in the dictionary

2017-11-13 Thread alessandro.benedetti
Which Solr version are you using ? >From the documentation : "Only query words, which are absent in index or too rare ones (below maxQueryFrequency ) are considered as misspelled and used for finding suggestions. ... These parameters (maxQueryFrequency and thresholdTokenFrequency) can be a percen

Re: Spellcheck: using multiple dictionaries (DirectSolrSpellChecker and FileBasedSpellChecker)

2016-09-26 Thread Ryan Yacyshyn
Ok, thanks Andrey. On Tue, 27 Sep 2016 at 00:13 Kydryavtsev Andrey wrote: > Hello, Ryan > > > As it obvious from exception message - you are forced to use same instance > of Analyzer to all of spell checkers which should be conjuncted. > > How this instance is initialized inside SpellChecker i

Re: Spellcheck: using multiple dictionaries (DirectSolrSpellChecker and FileBasedSpellChecker)

2016-09-26 Thread Kydryavtsev Andrey
Hello, Ryan As it obvious from exception message - you are forced to use same instance of Analyzer to all of spell checkers which should be conjuncted. How this instance is initialized inside SpellChecker instance could be found  here - https://github.com/apache/lucene-solr/blob/master/solr/co

Re: Spellcheck response format differs between a single core and SolrCloud

2016-01-11 Thread Ryan Yacyshyn
That's solves the mystery. The single-core is running 4.10.1 and SolrCloud on 5.3.1. Thanks James. On Mon, 11 Jan 2016 at 22:24 Dyer, James wrote: > Ryan, > > The json response format changed for Solr 5.0. See > https://issues.apache.org/jira/browse/SOLR-3029 . Is the single-core > solr run

RE: Spellcheck response format differs between a single core and SolrCloud

2016-01-11 Thread Dyer, James
Ryan, The json response format changed for Solr 5.0. See https://issues.apache.org/jira/browse/SOLR-3029 . Is the single-core solr running a 4.x version with the cloud solr running 5.x ? If they are both on the same major version, then we have a bug. James Dyer Ingram Content Group -O

Re: Spellcheck error

2015-12-03 Thread Matt Pearce
Hi James, Thanks for responding. The query we were testing looks like this: http://localhost:8983/solr/testdata/select?q=theatre&spellcheck.q=theatre I did some further investigation, after discovering that omitting the spellcheck.q parameter stops the error appearing, and it looks like synon

RE: Spellcheck error

2015-12-03 Thread Dyer, James
Matt, Can you give some information about how your spellcheck field is analyzed and also if you're using a custom query converter. Also, try and place the bare terms you want checked in spellcheck.q (ex, if your query is q=+movie +theatre, then spellcheck.q=movie theatre). Does it work in thi

Re: Spellcheck on first character

2015-11-30 Thread Alessandro Benedetti
gt; > > -Original message- > > > From:Ryan Yacyshyn > > > Sent: Friday 27th November 2015 15:44 > > > To: solr-user@lucene.apache.org > > > Subject: Re: Spellcheck on first character > > > > > > hmm.. I must be missing so

Re: Spellcheck on first character

2015-11-27 Thread Ryan Yacyshyn
s configurable via Solr: > http://lucene.apache.org/solr/5_3_0/solr-core/org/apache/solr/spelling/DirectSolrSpellChecker.html > > > > -Original message- > > From:Ryan Yacyshyn > > Sent: Friday 27th November 2015 15:44 > > To: solr-user@lucene.apache.org

RE: Spellcheck on first character

2015-11-27 Thread Markus Jelsma
/DirectSolrSpellChecker.html -Original message- > From:Ryan Yacyshyn > Sent: Friday 27th November 2015 15:44 > To: solr-user@lucene.apache.org > Subject: Re: Spellcheck on first character > > hmm.. I must be missing something then. I do get spelling suggestions if I > make a mistake

Re: Spellcheck on first character

2015-11-27 Thread Ryan Yacyshyn
hmm.. I must be missing something then. I do get spelling suggestions if I make a mistake anywhere *after* the first character (eg: apointment or apppointment or apppointmenz). But if there's only an additional character in front, I get nothing back. Have you tried this? I did try an online Levens

Re: Spellcheck on first character

2015-11-27 Thread Alessandro Benedetti
Hi Ryan, "eappointment" has a Leveinstein distance of 1 edit from "appointment" ( 1 insertion) . There's should be any problem to provide that suggestion, as the solr spellcheck supports up to 2 edits as a maximum distance. Cheers On 27 November 2015 at 03:41, Ryan Yacyshyn wrote: > Hi all, > >

RE: Spellcheck / Suggestions : Append custom dictionary to SOLR default index

2015-08-25 Thread Dyer, James
Max, If you know the entire list of words you want to spellcheck against, you can use FileBasedSpellChecker. See http://wiki.apache.org/solr/FileBasedSpellChecker . If, however, you have a field you want to spellcheck against but also want additional words added, consider using a copy of the

Re: spellcheck enabled but not getting any suggestions.

2015-04-17 Thread elisabeth benoit
Shouldn't you specify a spellcheck.dictionary in your request handler? Best regards, Elisabeth 2015-04-17 11:24 GMT+02:00 Derek Poh : > Hi > > I have enabled spellcheck but not getting any suggestions withincorrectly > spelled keywords. > I added the spellcheck into the/select request handler. >

RE: SpellCheck component query

2015-03-09 Thread Reitzel, Charles
st an ngram filtered field to get valid terms. hth, Charlie -Original Message- From: Ashish Mukherjee [mailto:ashish.mukher...@gmail.com] Sent: Monday, March 09, 2015 1:55 AM To: solr-user@lucene.apache.org Cc: amantandon...@gmail.com Subject: Re: SpellCheck component query Hi Aman, Thank

Re: SpellCheck component query

2015-03-08 Thread Ashish Mukherjee
Hi Aman, Thanks for your response. Taking your example further to elaborate what I am looking to do - if user types 'chai' and suggestion is 'chat' , then I would like to see all the values which 'chat' in them as suggestions, such as 'text chat', 'video chat', 'audio chat' etc. without making a

Re: SpellCheck component query

2015-03-08 Thread Aman Tandon
Hi, AFAIK solr currently not providing this feature. Suppose a scenario, the user is trying to search for "chai" (hindi meaning of tea). And in your index you have more documents containing the keyword "chat" as compared to the the keyword "chai". chat => 501 chai => 29 and the maxQueryFrequenc

Re: SpellCheck (AutoComplete) Not Working In Distributed Environment

2015-01-13 Thread Charles Sanders
ny help greatly appreciated! Thanks, -Charles - Original Message - From: "Erick Erickson" To: solr-user@lucene.apache.org Sent: Tuesday, December 30, 2014 6:07:13 PM Subject: Re: SpellCheck (AutoComplete) Not Working In Distributed Environment Did you try the shar

Re: SpellCheck (AutoComplete) Not Working In Distributed Environment

2015-01-02 Thread Shawn Heisey
On 1/1/2015 1:09 PM, Meraj A. Khan wrote: > When running SolrCloud do you even have to include the shards parameter > ,shouldnt only shards.qt parameter suffice? If you are using SolrCloud, no shards parameter is required ... all queries sent to either the collection or any shard replica will auto

Re: SpellCheck (AutoComplete) Not Working In Distributed Environment

2015-01-01 Thread Meraj A. Khan
Shawn, When running SolrCloud do you even have to include the shards parameter ,shouldnt only shards.qt parameter suffice? On Dec 30, 2014 7:17 PM, "Shawn Heisey" wrote: > On 12/30/2014 5:03 PM, Charles Sanders wrote: > > Thanks for the suggestion. > > > > I did not do that originally because th

Re: SpellCheck (AutoComplete) Not Working In Distributed Environment

2014-12-31 Thread Charles Sanders
Got it. Thanks for your help everyone. - Original Message - From: "Shawn Heisey" To: solr-user@lucene.apache.org Sent: Tuesday, December 30, 2014 7:16:59 PM Subject: Re: SpellCheck (AutoComplete) Not Working In Distributed Environment On 12/30/2014 5:03 PM, Charles San

Re: SpellCheck (AutoComplete) Not Working In Distributed Environment

2014-12-30 Thread Shawn Heisey
On 12/30/2014 5:03 PM, Charles Sanders wrote: > Thanks for the suggestion. > > I did not do that originally because the documentation states: > This parameter is not required for the /select request handler. > > Which is what I am using. But I gave it a go, even though I'm not certain of > th

Re: SpellCheck (AutoComplete) Not Working In Distributed Environment

2014-12-30 Thread Charles Sanders
ction.java:66)\n\tat org.eclipse.jetty.server.bio.SocketConnector$ConnectorEndPoint.run(SocketConnector.java:254)\n\tat org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:599)\n\tat org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:534)\n\tat java.lang.Thread.run(Thread.java:744)\n

Re: SpellCheck (AutoComplete) Not Working In Distributed Environment

2014-12-30 Thread Erick Erickson
Did you try the shards parameter? See: https://cwiki.apache.org/confluence/display/solr/Spell+Checking#SpellChecking-DistributedSpellCheck On Tue, Dec 30, 2014 at 2:20 PM, Charles Sanders wrote: > I'm running Solr 4.8 in a distributed environment (2 shards). I have added > the spellcheck compone

RE: spellcheck if docsfound below threshold

2014-05-16 Thread Dyer, James
Its "spellcheck.maxResultsForSuggest". http://wiki.apache.org/solr/SpellCheckComponent#spellcheck.maxResultsForSuggest James Dyer Ingram Content Group (615) 213-4311 -Original Message- From: Jan Verweij - Reeleez [mailto:j...@reeleez.nl] Sent: Monday, May 12, 2014 2:12 AM To: solr-user@

Re: [Spellcheck] NullPointerException on QueryComponent.mergeIds

2013-12-07 Thread Jean-Marc Desprez
James, Sorry for the late response. The shard.qt parameter actually solved my problem ! Thanks Jean-Marc 2013/11/12 Dyer, James > Jean-Marc, > > This might not solve the particular problem you're having, but to get > spellcheck to work properly in a distributed enviornment, be sure to set > th

RE: [Spellcheck] NullPointerException on QueryComponent.mergeIds

2013-11-12 Thread Dyer, James
Jean-Marc, This might not solve the particular problem you're having, but to get spellcheck to work properly in a distributed enviornment, be sure to set the "shards.qt" parameter to the name of your request handler. See http://wiki.apache.org/solr/SpellCheckComponent#Distributed_Search_Suppor

RE: spellcheck solr 4.3.1

2013-11-11 Thread Dyer, James
There are 2 parameters you want to consider: First is "spellcheck.maxResultsForSuggest". Because you have an "OR" query, you'll get hits if only 1 query term is in the index. This parameter lets you tune it to make it suggest if the query returns n or fewer hits. My memory tells me, however,

Re: Spellcheck with Distributed Search (sharding).

2013-10-24 Thread Luis Cappa Banda
; James Dyer > Ingram Content Group > (615) 213-4311 > > > -Original Message- > From: Luis Cappa Banda [mailto:luisca...@gmail.com] > Sent: Thursday, October 24, 2013 6:22 AM > To: solr-user@lucene.apache.org > Subject: Re: Spellcheck with Distributed Search (sharding).

RE: Spellcheck with Distributed Search (sharding).

2013-10-24 Thread Dyer, James
24, 2013 6:22 AM To: solr-user@lucene.apache.org Subject: Re: Spellcheck with Distributed Search (sharding). Any idea? 2013/10/23 Luis Cappa Banda > More info: > > When executing the Query to a single Solr server it works: > http://solr1:8080/events/data/suggest?q=m&wt=json<http://solr

Re: Spellcheck with Distributed Search (sharding).

2013-10-24 Thread Luis Cappa Banda
Any idea? 2013/10/23 Luis Cappa Banda > More info: > > When executing the Query to a single Solr server it works: > http://solr1:8080/events/data/suggest?q=m&wt=json > > { > >- responseHeader: >{ > - status: 0,

Re: Spellcheck with Distributed Search (sharding).

2013-10-23 Thread Luis Cappa Banda
More info: When executing the Query to a single Solr server it works: http://solr1:8080/events/data/suggest?q=m&wt=json { - responseHeader: { - status: 0, - QTime: 1 }, - response: { - numFo

Re: spellcheck causing Core Reload to hang

2013-09-17 Thread Raheel Hasan
Check this thread: http://lucene.472066.n3.nabble.com/Spellcheck-compounded-words-td3192748i20.html This issue is there since 2011. On Tue, Sep 17, 2013 at 6:35 PM, Raheel Hasan wrote: > I think they shou

Re: spellcheck causing Core Reload to hang

2013-09-17 Thread Raheel Hasan
I think they should have it in RC0, because if you search in this forum at lucene, this issue is there since version 4.3 ! Regards, Raheel On Tue, Sep 17, 2013 at 5:58 PM, Erick Erickson wrote: > H, do we have a JIRA tracking this and does it seem like any fix will > get into 4.5? > > I thi

Re: Spellcheck compounded words

2013-09-16 Thread Raheel Hasan
--- > From: Raheel Hasan [mailto:raheelhasan@gmail.com] > Sent: Monday, September 16, 2013 8:29 AM > To: solr-user@lucene.apache.org > Subject: Re: Spellcheck compounded words > > Hi, > > I m running 4.3.. > > I have posted all the details in another threat... do y

RE: Spellcheck compounded words

2013-09-16 Thread Dyer, James
ming queries. James Dyer Ingram Content Group (615) 213-4311 -Original Message- From: Raheel Hasan [mailto:raheelhasan@gmail.com] Sent: Monday, September 16, 2013 8:29 AM To: solr-user@lucene.apache.org Subject: Re: Spellcheck compounded words Hi, I m running 4.3.. I have posted a

Re: Spellcheck compounded words

2013-09-16 Thread Raheel Hasan
e the "data" dir when you restart. With a little > background information, maybe someone can help. > > James Dyer > Ingram Content Group > (615) 213-4311 > > -Original Message- > From: Rah1x [mailto:raheel_itst...@yahoo.com] > Sent: Monday, September 16

RE: Spellcheck compounded words

2013-09-16 Thread Dyer, James
solr-user@lucene.apache.org Subject: Re: Spellcheck compounded words Hi guyz, Did anyone solve this issue? I am having it also, it took me 3 days to exactly figure it out that its coming from "spellcheck.maxCollationTries"... Even with 1 it hangs forewver. The only way to restart is

Re: Spellcheck compounded words

2013-09-16 Thread Rah1x
Hi guyz, Did anyone solve this issue? I am having it also, it took me 3 days to exactly figure it out that its coming from "spellcheck.maxCollationTries"... Even with 1 it hangs forewver. The only way to restart is to stop solr, delete "data" folder and then start solr again (i.e. index lost !).

Re: spellcheck causing Core Reload to hang

2013-09-16 Thread Raheel Hasan
Please see the log (after solr restart) in the other msg I posted on this forum with the subject: "*Unable to connect" to "http://localhost:8983/solr/ *" Thanks. On Mon, Sep 16, 2013 at 12:25 PM, Raheel Hasan wrote: > Yes I have tried Spellcheck=false and with that everything works just > fine

Re: spellcheck causing Core Reload to hang

2013-09-16 Thread Raheel Hasan
Yes I have tried Spellcheck=false and with that everything works just fine. But I do need Spell check component so I cant just leave it off. On Mon, Sep 16, 2013 at 12:24 PM, Raheel Hasan wrote: > Hi, > > Basically, it hangs only on "core Reload" and not during queries. > Furthermore, there is n

Re: spellcheck causing Core Reload to hang

2013-09-16 Thread Raheel Hasan
Hi, Basically, it hangs only on "core Reload" and not during queries. Furthermore, there is never any error reported in the logs, in fact the log only records until Core-Reload call. If I shut down and restart Solr, the next time it wont start, and still no errors in the log. On Sat, Sep 14, 2

Re: spellcheck causing Core Reload to hang

2013-09-13 Thread Chris Hostetter
: after a lot of investigation today, I found that its the spellcheck : component which is causing the issue. If its turned off, all will run well : and core can easily reload. However, when the spellcheck is on, the core : wont reload instead hang forever. Can you take some stack traces while th

Re: spellcheck causing Core Reload to hang

2013-09-13 Thread tamanjit.bin...@yahoo.co.in
Any specific error? Anything in the logs when it hangs? -- View this message in context: http://lucene.472066.n3.nabble.com/spellcheck-causing-Core-Reload-to-hang-tp4089866p4089931.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: spellcheck and search in a same solr request

2013-07-24 Thread Otis Gospodnetic
Hi Manasi, Have a look at http://sematext.com/products/dym-researcher/index.html - it sounds like exactly what you are after. Otis -- Solr & ElasticSearch Support -- http://sematext.com/ Performance Monitoring -- http://sematext.com/spm On Tue, Jul 23, 2013 at 1:29 AM, smanad wrote: > Hey, >

Re: Spellcheck field element and collation issues

2013-07-23 Thread Brendan Grainger
to:brendan.grain...@gmail.com] > Sent: Tuesday, July 23, 2013 4:41 PM > To: solr-user@lucene.apache.org > Subject: Re: Spellcheck field element and collation issues > > Thanks James. That's it! Now: > > > http://localhost:8981/solr/articles/select?indent=true&q=Perfrm%2

RE: Spellcheck field element and collation issues

2013-07-23 Thread Dyer, James
[mailto:brendan.grain...@gmail.com] Sent: Tuesday, July 23, 2013 4:41 PM To: solr-user@lucene.apache.org Subject: Re: Spellcheck field element and collation issues Thanks James. That's it! Now: http://localhost:8981/solr/articles/select?indent=true&q=Perfrm%20HVC&rows=0&max

Re: Spellcheck field element and collation issues

2013-07-23 Thread Brendan Grainger
Grainger [mailto:brendan.grain...@gmail.com] > Sent: Tuesday, July 23, 2013 3:22 PM > To: solr-user@lucene.apache.org > Subject: Re: Spellcheck field element and collation issues > > Hi James, > > If I try: > > > http://localhost:8981/solr/articles/select?indent=t

RE: Spellcheck field element and collation issues

2013-07-23 Thread Dyer, James
ery_Fields.29 James Dyer Ingram Content Group (615) 213-4311 -Original Message- From: Brendan Grainger [mailto:brendan.grain...@gmail.com] Sent: Tuesday, July 23, 2013 3:22 PM To: solr-user@lucene.apache.org Subject: Re: Spellcheck field element and collation issues Hi James, If I tr

RE: Spellcheck field element and collation issues

2013-07-23 Thread Dyer, James
earch field for "/select" but in fact it isn't. James Dyer Ingram Content Group (615) 213-4311 -Original Message- From: Brendan Grainger [mailto:brendan.grain...@gmail.com] Sent: Tuesday, July 23, 2013 2:43 PM To: solr-user@lucene.apache.org Subject: Re: Spellcheck field ele

Re: Spellcheck field element and collation issues

2013-07-23 Thread Brendan Grainger
rainger [mailto:brendan.grain...@gmail.com] > Sent: Tuesday, July 23, 2013 2:43 PM > To: solr-user@lucene.apache.org > Subject: Re: Spellcheck field element and collation issues > > Hi James, > > I get the following response for that query: > > > > 0 > 8 >

Re: Spellcheck field element and collation issues

2013-07-23 Thread Brendan Grainger
Hi James, I get the following response for that query: 0 8 true Perfrm HVC 0 3 0 6 0 perform 4 performed 1 performance 3 2 7 10 0 hvac 4 have 5 false Thanks Brendan On Tue, Jul 23, 2013 at 3:19 PM, Dyer, James wrote: > For this query: > > > http://localhost:8981/s

RE: Spellcheck field element and collation issues

2013-07-23 Thread Dyer, James
For this query: http://localhost:8981/solr/articles/select?indent=true&q=Perfrm%20HVC&rows=0 ...do you get anything back in the spellcheck response? Is it correcting the individual words and not giving collations? Or are you getting no individual word suggestions also? James Dyer Ingram Cont

RE: spellcheck and search in a same solr request

2013-07-23 Thread Dyer, James
Solr doesn't support any kind of short-circuting the original query and returning the results of the corrected query or collation. You just re-issue the query in a second request. This would be a nice feature to add though. James Dyer Ingram Content Group (615) 213-4311 -Original Message-

Re: Spellcheck questions

2013-07-18 Thread SolrLover
check the below link to get more info on IndexBasedSpellCheckers http://searchhub.org/2010/08/31/getting-started-spell-checking-with-apache-lucene-and-solr/ -- View this message in context: http://lucene.472066.n3.nabble.com/Spellcheck-questions-tp4078985p4079000.html Sent from the Solr - User

Re: spellcheck

2013-05-08 Thread hacene
try to remove those in the configuration -- View this message in context: http://lucene.472066.n3.nabble.com/spellcheck-tp506116p4061675.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: spellcheck: change in behavior and QTime

2013-04-23 Thread SandeepM
I apologize for the length of the previous message. I do see a problem with spellcheck becoming faster (notice QTime). I also see an increase in the number of cache hits if spellcheck=false is run one time followed by the original spellcheck query. Seems like spellcheck=false alters the behavior

Re: SpellCheck - Ignore list of words

2013-02-18 Thread Jack Krupansky
1. Create a copy of the field and add the exception list to it. 2. Or, add a second spell checker to your spellcheck search component that is a FileBasedSpellChecker with the exceptions in a simple text file. Then reference both spellcheckers with spellcheck.dictionary, with the FileBasedSpell

Re: SpellCheck - Ignore list of words

2013-02-18 Thread Erick Erickson
The 4.x based spellcheck process just looks in the index and enumerates the terms, there's no special "sidecar" index. So you'd probably have to create a different field that contained only the words you wanted to be returned as possibilities Best Erick On Mon, Feb 18, 2013 at 5:06 AM, Heman

Re: SpellCheck Component does not work for certain words

2012-08-22 Thread mechravi25
Hi, Just few things to add up, I found that when we search for less than or equal to 3 letters I'm not able to get any suggestions and also when I search for "finding", I dont get any suggestions related to it even though i have search results regarding the same. But when i Search for "findingg"

RE: spellcheck collate with fq parameters SOLR-2010

2012-05-31 Thread Markus Jelsma
Thanks James, that works nicely! -Original message- > From:Dyer, James > Sent: Thu 31-May-2012 16:05 > To: solr-user@lucene.apache.org > Subject: RE: spellcheck collate with fq parameters SOLR-2010 > > Markus, > > When you set "spellcheck.maxCollationT

RE: spellcheck collate with fq parameters SOLR-2010

2012-05-31 Thread Dyer, James
Markus, When you set "spellcheck.maxCollationTries" to a value greater than zero, the spellchecker will query each collation candidate to determine how many hits it would return. If the collation will not yield any hits, it throws it away then tries some more (up to whatever value you set). Y

RE: spellcheck on multiple fields?

2012-05-20 Thread ilanh
It is possible to do spellcheck on multiple fields in Apache's solr index. In order to configure Solr spellcheck to use words from several fields you should: Declare a new field. Dont forget t specify the properties: type="textSpell" and multiValued="true". For example: . Use copyField to ge

RE: spellcheck configuration not providing suggestions or corrections

2012-02-13 Thread geeky2
thank you sooo much - that was it. also - thank you for the tip on which field to hit, eg itemDesc in stead of itemDescSpell. thank you, mark -- View this message in context: http://lucene.472066.n3.nabble.com/spellcheck-configuration-not-providing-suggestions-or-corrections-tp3740877p3741783

Re: spellcheck configuration not providing suggestions or corrections

2012-02-13 Thread alxsss
you have put this true Maybe you need to put true Alex. -Original Message- From: Dyer, James To: solr-user Sent: Mon, Feb 13, 2012 12:43 pm Subject: RE: spellcheck configuration not providing suggestions or corrections That would be it, I tbinkl. Your request is to

RE: spellcheck configuration not providing suggestions or corrections

2012-02-13 Thread Dyer, James
the main field ("itemDesc" in your case) and just use "itemDescSpell" from which to build your dictionary. James Dyer E-Commerce Systems Ingram Content Group (615) 213-4311 -Original Message- From: geeky2 [mailto:gee...@hotmail.com] Sent: Monday, February

RE: spellcheck configuration not providing suggestions or corrections

2012-02-13 Thread geeky2
hello thank you for the suggestion - however this did not work. i went in to solrconfig and change the count to 20 - then restarted the server and then did a reimport. is it possible that i am not firing the request handler that i think i am firing ? default false

RE: spellcheck configuration not providing suggestions or corrections

2012-02-13 Thread Dyer, James
The one thing that jumps out is you have "spellcheck.count" set to 1. Try 10 and see if you get results. The spellcherker uses a 2-pass algorithm and if the "count" is too small, all the good suggestions can get eliminated in the first pass. So you often need a "count" of maybe 10 even if you

Re: SpellCheck Help

2012-01-26 Thread David Radunz
Hey, I really recommend you contact Magento pre-sales to find out why THEIR stuff doesn't work. The information you have provided is specific to magento... You can't expect people on a Solr mailing list to help you with a Magento problem. I guarantee you the issue is probably something Ma

Re: SpellCheck Help

2012-01-26 Thread vishal_asc
Downloaded Apache Solr from the URL: http://apache.dattatec.com//lucene/solr/ , extracted it at my windows machine. Then started solr: [solr-path]/example, and typed the following in a terminal: java –jar start.jar. it started and i can see the solr page at http://localhost:8983/solr/admin/ No

Re: SpellCheck Help

2012-01-25 Thread Erick Erickson
You have to give us a lot more detail about exactly what you've done and what your results are. Please review: http://wiki.apache.org/solr/UsingMailingLists Best Erick On Tue, Jan 24, 2012 at 7:42 PM, vishal_asc wrote: > I have installed the same solr 3.5 with jetty and integrating it magento 1.

Re: SpellCheck Help

2012-01-24 Thread vishal_asc
I have installed the same solr 3.5 with jetty and integrating it magento 1.11 but it seems to be not working. As my search result is not showing "Did you mean string ?" when I misspelled any word. I followed all steps necessary for magento solr integration. Please help ASAP. Thanks Vishal -- V

Re: SpellCheck Help

2012-01-10 Thread Donald Organ
my copyField was defined as copyfield <--- notice the lowercase f On Tue, Jan 10, 2012 at 2:50 PM, Dyer, James wrote: > Three things to check: > > 1. Use a higher spellcheck.count than 1. Try 10. IndexBasedSpellChecker > pre-filters the possibilities in a first pass of a 2-pass process.

RE: SpellCheck Help

2012-01-10 Thread Dyer, James
Three things to check: 1. Use a higher spellcheck.count than 1. Try 10. IndexBasedSpellChecker pre-filters the possibilities in a first pass of a 2-pass process. If spellcheck.count is too low, all the good suggestions might get filtered on the first pass and then it won't find anything on

Re: spellcheck-index is rebuilt on commit

2012-01-03 Thread OliverS
A jira-ticket has been issued, this discussion here is closed. https://issues.apache.org/jira/browse/SOLR-2999 Oliver -- View this message in context: http://lucene.472066.n3.nabble.com/spellcheck-index-is-rebuilt-on-commit-tp3626492p3628894.html Sent from the Solr - User mailing list archive at

Re: spellcheck-index is rebuilt on commit

2012-01-03 Thread OliverS
Thanks for the clear explanation. I'll open a ticket as soon as jira is up running again. Oliver -- View this message in context: http://lucene.472066.n3.nabble.com/spellcheck-index-is-rebuilt-on-commit-tp3626492p3628603.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: spellcheck-index is rebuilt on commit

2012-01-03 Thread Simon Willnauer
On Tue, Jan 3, 2012 at 9:12 AM, OliverS wrote: > Hi all > > Thanks a lot, and it seems to be a bug, but not of 4.0 only. You are right, > I was doing a commit on an optimized index without adding any new docs (in > fact, I did this for replication on the master). I will open a ticket as > soon as

Re: spellcheck-index is rebuilt on commit

2012-01-03 Thread OliverS
Hi all Thanks a lot, and it seems to be a bug, but not of 4.0 only. You are right, I was doing a commit on an optimized index without adding any new docs (in fact, I did this for replication on the master). I will open a ticket as soon as I fully understand what's going on. I have difficulties und

Re: spellcheck-index is rebuilt on commit

2012-01-02 Thread Jan Høydahl
Reproduced this both on 3.X and trunk using exampledocs. If you have an optimized index, then reindex ALL docs with a COMMIT, then there will be only one segment, probably because all docs in the previous segment were deleted. Adding just a few docs and COMMITting does not trigger this case. --

Re: spellcheck-index is rebuilt on commit

2012-01-02 Thread Mark Miller
Yeah, the only code path I can see this happening on is: newSearcher.getIndexReader().getSequentialSubReaders().length == 1 So if you keep issuing commits on an optimized index, it will open a new Searcher and keep rebuilding the index. Really, this should probably *only* trigger on an optimize

Re: spellcheck-index is rebuilt on commit

2012-01-02 Thread Simon Willnauer
hey, is it possible that during those commits nothing has changed in the index? I mean are you committing nevertheless there are changes? if so this could happen since the spellchecker gets a new even that you did a commit but the index didn't really change. The spellchecker really only checks if t

Re: spellcheck-index is rebuilt on commit

2012-01-02 Thread OliverS
Hi Looks like they strip the -Text for the list. Whole message here: http://lucene.472066.n3.nabble.com/spellcheck-index-is-rebuilt-on-commit-td3626492.html Yes, I did restart tomcat. Thanks Oliver Zitat von "Jan Høydahl / Cominvent [via Lucene]" : > > > Olivier, your log snippets did not ma

Re: spellcheck-index is rebuilt on commit

2012-01-02 Thread Jan Høydahl
Olivier, your log snippets did not make it into the mail. I think the mailing list strips attachments. Did you reload core or restart Jetty/Tomcat after your changes? -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com Solr Training - www.solrtraining.com On 2. jan. 2012,

Re: spellcheck in dismax

2011-11-22 Thread alxsss
It seem you forget this true -Original Message- From: Ruixiang Zhang To: solr-user Sent: Tue, Nov 22, 2011 11:54 am Subject: spellcheck in dismax I put the following into dismax requestHandler, but no suggestion field is returned. true false 1

RE: SpellCheck Print Multiple Collations

2011-09-22 Thread Kudzanai
spellcheck.collateExtendedResults = true seems to have sorted my problem. My other parameters are: spellcheck = true spellcheck.count = aNumResults spellcheck.q = SEARCH TEXT spellcheck.build= true spellcheck.collate= true spellcheck.maxCollations= 4 spellcheck.collateExtendedResults = true

RE: SpellCheck Print Multiple Collations

2011-09-22 Thread Dyer, James
set it at least to whatever value you've got for "maxCollations", possibly a few higher. James Dyer E-Commerce Systems Ingram Content Group (615) 213-4311 -Original Message- From: Kudzanai [mailto:kudzanai.vudzij...@gmail.com] Sent: Thursday, September 22, 2011 9:20

RE: SpellCheck Print Multiple Collations

2011-09-22 Thread Kudzanai
I am using solrJ. Here is what my method looks like. List suggestedTermsList = new ArrayList(); if(aQueryResponse == null) { return suggestedTermsList; } try { SpellCheckResponse spellCheckResponse = aQueryResponse.getSpellCheckResponse(); if(spellCheckResponse ==

RE: SpellCheck Print Multiple Collations

2011-09-22 Thread Dyer, James
If using SolrJ, use QueryResponse.getSpellCheckResponse().getCollatedResults() . This returns a List . On each Collation object, getCollationQueryString() will return the corrected queries. Note that unless you specify "spellcheck.maxCollationTries", the collations might not return anythin

RE: Spellcheck

2011-09-08 Thread Jaeger, Jay - DOT
to:g...@mimirtech.com] Sent: Wednesday, September 07, 2011 1:10 PM To: solr-user@lucene.apache.org Subject: Re: Spellcheck On Wed, Sep 7, 2011 at 3:47 PM, Danicela nutch wrote: > I just tried to start the data from scratch, I deleted Nutch segments and > solr/data/index files, but it chan

Re: Spellcheck

2011-09-08 Thread tamanjit.bin...@yahoo.co.in
In the RequestHandler spellCheckCompRH you have to make changes as follows: explicit textSpell false true 5 spellcheck This hopefully should do it. Also I would suggest that for the time being (i.e. till you ge

Re: Spellcheck

2011-09-08 Thread Danicela nutch
yes, how to fix that ? - Original Message - From: tamanjit.bin...@yahoo.co.in Sent: 09/08/11 08:43 AM To: solr-user@lucene.apache.org Subject: Re: Spellcheck Hi if you have not figyured it out as yet, this might help:: Issues with *schema.xml* here the type should actually be textSpell (

Re: Spellcheck

2011-09-08 Thread Danicela nutch
yes, how to fix that ? - Original Message - From: tamanjit.bin...@yahoo.co.in Sent: 09/08/11 08:43 AM To: solr-user@lucene.apache.org Subject: Re: Spellcheck Hi if you have not figyured it out as yet, this might help:: Issues with *schema.xml* here the type should actually be textSpell (

  1   2   3   >