Specifying optional terms with standard (lucene) request handler?

2011-01-25 Thread Daniel Pötzinger
Hi I am searching for a way to specify optional terms in a query ( that dont need to match (But if they match should influence the scoring) ) Using the dismax parser a query like this: str name=mm2/str str name=debugQueryon/str str name=q+lorem ipsum dolor amet/str str name=qfcontent/str str

Re: Specifying optional terms with standard (lucene) request handler?

2011-01-25 Thread Jonathan Rochkind
With the 'lucene' query parser? include q.op=OR and then put a + (mandatory) in front of every term in the 'q' that is NOT optional, the rest will be optional. I think that will do what want. Jonathan On 1/25/2011 5:07 PM, Daniel Pötzinger wrote: Hi I am searching for a way to specify

Specifying optional terms with standard (lucene) request handler?

2011-01-25 Thread Daniel Pötzinger
Hello I am searching for a way to specify optional terms in a query ( that dont need to match (But if they match should influence the scoring) ) Using the dismax parser a query like this: str name=mm2/str str name=debugQueryon/str str name=q+lorem ipsum dolor amet/str str name=qfcontent/str