Re: Inconsistent search results.

2012-11-30 Thread Sohail Aboobaker
Hi, Thank you for your help. The issue is now resolved after using analysis tool as suggested by Jack and Chris. We used the following filters in the end for this field: analyzer tokenizer class=solr.WhitespaceTokenizerFactory/ filter class=solr.SynonymFilterFactory

Re: Inconsistent search results.

2012-11-27 Thread Sohail Aboobaker
Hi, After further analysis it was found that the cases in which the search works as expected are where the . is preceded by a number. Whenever, we have an alphabet instead of number, the search on the word on right side doesn't return results. SA8182B.BA0850 -- Will have issues when searching

Re: Inconsistent search results.

2012-11-27 Thread Sohail Aboobaker
Sorry, a correction. The first part doesn't give results. SA8182B.BA0850 -- Will have issues when searching on SA8182 -- no results. searching on BA0850 will give results. SA8182.BA0850 -- No issues will return results for BA0850 and SA8182. Regards, Sohail

Re: Inconsistent search results.

2012-11-27 Thread Chris Hostetter
: After further analysis it was found that the cases in which the search : works as expected are where the . is preceded by a number. Whenever, we : have an alphabet instead of number, the search on the word on right side : doesn't return results. Please note Jack's previous suggestion... Try

Re: Inconsistent search results.

2012-11-21 Thread Jack Krupansky
, November 21, 2012 8:13 AM To: solr-user@lucene.apache.org Subject: Inconsistent search results. Hi, We have 500k+ documents indexed with many fields. One of the fields is a simple text filled that is defined as default search field and we copy many field values into that field. Some values

Re: Inconsistent search results.

2012-11-21 Thread Luis Cappa Banda
with no white space. -- Jack Krupansky -Original Message- From: Sohail Aboobaker Sent: Wednesday, November 21, 2012 8:13 AM To: solr-user@lucene.apache.org Subject: Inconsistent search results. Hi, We have 500k+ documents indexed with many fields. One of the fields is a simple text

Inconsistent search results

2011-06-27 Thread Jihed Amine Maaref
Hi! I'm new to Apache Solr and trying to make a query using search terms against a field called normalizedContents and of type text. All of the search terms must exist in the field. Problem is, I'm getting inconsistent results. For example, the solr index has only one document with

Re: Inconsistent search results

2011-06-27 Thread Michael Kuhlmann
Am 27.06.2011 15:56, schrieb Jihed Amine Maaref: - normalizedContents:(EDOUAR* AND une) doesn't return anything This was discussed few days ago: http://lucene.472066.n3.nabble.com/Conflict-in-wildcard-query-and-spellchecker-in-solr-search-tt3095198.html - normalizedContents:(edouar* AND un)

Re: Inconsistent search results with multiple keywords

2010-09-10 Thread Ron Mayer
Stéphane Corlosquet wrote: Hi all, I'm new to solr so please let me know if there is a more appropriate place for my question below. I'm noticing a rather unexpected number of results when I add more keywords to a search. I'm listing below a example (where I replaced the real keywords

Re: Inconsistent search results with multiple keywords

2010-09-09 Thread Erick Erickson
Could you show us the fieldType definitions for your fields? I suspect you're not getting the tokens you expect. This will almost certainly be true if the type is string rather than text. The solr admin page (especially analysis) will help you a lot here, as will adding debugQuery=on to your

Re: Inconsistent search results with multiple keywords

2010-09-09 Thread Markus Jelsma
Looks like AND is your defaultOperator [1]. Check your schema.xml and try adding q.op=or to your query. [1]: http://wiki.apache.org/solr/SearchHandler#q.op On Thursday 09 September 2010 15:34:52 Stéphane Corlosquet wrote: Hi all, I'm new to solr so please let me know if there is a more

Re: Inconsistent search results with multiple keywords

2010-09-09 Thread Stéphane Corlosquet
Hi Erick, On Thu, Sep 9, 2010 at 9:41 AM, Erick Erickson erickerick...@gmail.comwrote: Could you show us the fieldType definitions for your fields? I suspect you're not getting the tokens you expect. This will almost certainly be true if the type is string rather than text. I should

Re: Inconsistent search results with multiple keywords

2010-09-09 Thread Stéphane Corlosquet
Hi Markus, On Thu, Sep 9, 2010 at 9:55 AM, Markus Jelsma markus.jel...@buyways.nlwrote: Looks like AND is your defaultOperator [1]. yes, my schema.xml file have solrQueryParser defaultOperator=AND/ which is why I thought that the number of hits would decrease every time you add a keyword.

Re: Inconsistent search results with multiple keywords

2010-09-09 Thread Ahmet Arslan
yes, my schema.xml file have  solrQueryParser defaultOperator=AND/ which is why I thought that the number of hits would decrease every time you add a keyword. You are using dismax so, it is determined by mm parameter.

RE: Re: Inconsistent search results with multiple keywords

2010-09-09 Thread Markus Jelsma
Indeed, it's the dismax, i missed it! My bad..   -Original message- From: Ahmet Arslan iori...@yahoo.com Sent: Thu 09-09-2010 20:37 To: solr-user@lucene.apache.org; Subject: Re: Inconsistent search results with multiple keywords yes, my schema.xml file have  solrQueryParser

Re: Inconsistent search results with multiple keywords

2010-09-09 Thread Stéphane Corlosquet
Thank you Erick, Markus and Ahmet! That answered my question. Changing the value of the mm parameter in solrconfig.xml did have an effect on the 3 keyword query (it was set to 2-25%), and removing it entirely forced all keywords to be present, and the number of hits was decreasing as expected.

Re: Inconsistent search results with multiple keywords

2010-09-09 Thread Stéphane Corlosquet
sorry, mm was set to 2-35%, not 2-25%, but nevermind. Steph. On Thu, Sep 9, 2010 at 3:13 PM, Stéphane Corlosquet scorlosq...@gmail.comwrote: Thank you Erick, Markus and Ahmet! That answered my question. Changing the value of the mm parameter in solrconfig.xml did have an effect on the 3