Re: How solr text search finding work

2013-11-28 Thread Paul Libbrecht
Viresh, there's two ways to solve this. - Using the CompoundWordsAnalyzer. I still haven't been able to find an easy to embark method into there. That would decompose, at indexing and query time, the term Kreditgeber into kredit and geber. For a higher precision, you probably want to do it at

Re: How solr text search finding work

2013-11-28 Thread Viresh Modi
Declaration: My Field Type Defination as below: On 28 November 2013 19:31, Ahmet Arslan wrote: > Hi Viresh, > > It all about a

Re: How solr text search finding work

2013-11-28 Thread Ahmet Arslan
Hi Viresh, It all about analysis (field type) of the text you are indexing searching. http://localhost:8983/solr/#/collection1/analysis page is very helpful to obverse/debug how your text is indexed analyzed. It is probably because of your stemmer. Can you paste your field type definition?

How solr text search finding work

2013-11-28 Thread Viresh Modi
For instance,When we searched for “Kredit” and received hits containing the words “Kredit”, “Kredite” and “Kredit-“. However, entries containing the word “Kreditgeber” are not coming up in the results list. Would you know why? Regards Viresh Modi