Re: Phrase query combined with term query for maximum accuracy

2013-10-31 Thread michael.boom
Michael -- View this message in context: http://lucene.472066.n3.nabble.com/Phrase-query-combined-with-term-query-for-maximum-accuracy-tp4098215p4098599.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Phrase query combined with term query for maximum accuracy

2013-10-31 Thread michael.boom
or title:(blue hat)^30 or text:(blue hat)^10&fq=active:true&start=0&rows=40&sort=score+desc&fl=*,score&country=US for collection_DE it works fine with both lowercase and uppercase operators - Thanks, Michael -- View this message in context: http://lucene.472066.n3

Re: Phrase query combined with term query for maximum accuracy

2013-10-29 Thread Jack Krupansky
combined with term query for maximum accuracy For maximum search accuracy on my SolrCloud system i was thinking of combining phrase search with term search in the following way: search term: john doe search fields: title, description - a match in the title is more relevant than one in the

Phrase query combined with term query for maximum accuracy

2013-10-29 Thread michael.boom
ing edismax parser: q.op=or&q=title:"john doe"^100 OR description:"john doe"^50 OR title:john doe^30 OR description:john doe^10 Would the above query provide me what i want, or is there a better way to do it? Thanks! ----- Thanks, Michael -- View this message in conte