Re: Searching with AND + OR and spaces

2010-11-12 Thread Imran
To get a more precise result on exact matches of your terms, how about having another a string type field for title and subhead. And use dismax to boost the string type fields more than the text type fields. Cheers -- Imran On Fri, Nov 12, 2010 at 6:56 PM, Jon Drukman wrote: > Ahmet Arslan yah

Re: Searching with AND + OR and spaces

2010-11-12 Thread Jon Drukman
Ahmet Arslan yahoo.com> writes: > > > (title:"Call of Duty" OR subhead:"Call of Duty") > > > > No matches, despite the fact that there are many documents > > that should match. > > Field types of title and subhead are important here. Do you use stopwordfilterfactory with enable > position inc

Re: Searching with AND + OR and spaces

2010-11-12 Thread Tomas Fernandez Lobbe
Hi Jon, for the first query: title:"Call of Duty" OR subhead:"Call of Duty" If you are sure that you have documents with the same phrase, make sure you don't have a problem with stop words and with token positions. I recommend you to check the analysis page at the Solr admin. pay special attent

Re: Searching with AND + OR and spaces

2010-11-12 Thread Ahmet Arslan
> (title:"Call of Duty" OR subhead:"Call of Duty") > > No matches, despite the fact that there are many documents > that should match. Field types of title and subhead are important here. Do you use stopwordfilterfactory with enable position increments? What is you solr version? > So I left o