Re: solr issue with seaching words

2012-09-14 Thread Erick Erickson
And you have SnowballPorterFilterFactory in your analysis chain which is transforming "jacke" into "jack". Best Erick On Mon, Sep 10, 2012 at 7:15 AM, zainu wrote: > http://lucene.472066.n3.nabble.com/file/n4006583/Unbenannt.png > > > > -- > View this message in context: > http://lucene.472066.

Re: solr issue with seaching words

2012-09-10 Thread zainu
http://lucene.472066.n3.nabble.com/file/n4006583/Unbenannt.png -- View this message in context: http://lucene.472066.n3.nabble.com/solr-issue-with-seaching-words-tp4005200p4006583.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: solr issue with seaching words

2012-09-10 Thread zainu
Thank you very much guys for your reply and sorry for getting back to you so late. Here is output from anylsis. Please see the attached image. I can see , it returns me Jack as well when i type jacke. -- View this message in context: http://lucene.472066.n3.nabble.com/solr-issue-with-seaching-w

Re: solr issue with seaching words

2012-09-06 Thread Chris Hostetter
: I am facing a strange problem. I am searching for word "jacke" but solr also : returns result where my description contains 'RCA-Jack/'. Íf i search : "jacka" or "jackc" or "jackd", it works fine and does not return me any : result which is what i am expecting in this case. you need to tell us

Re: solr issue with seaching words

2012-09-04 Thread Dikchant Sahi
Try debugging it using analysis page or running the query in debug mode (&debugQuery=true). In analysis page, add 'RCA-Jack/' to index and 'jacke' to query. This might help you understanding the behavior. If still unable to debug, some additional information would be required to help. On Tue, Se

Re: solr issue with seaching words

2012-09-04 Thread Rafał Kuć
Hello! I suppose, you may have word delimiter along with stemming in your configuration. You may see how your analysis chain works in Solr analysis pages (admin panel). You can paste the type configuration for the field you experiencing issues on and we will be able to see what is happening. --