Re: qf with multiple fields in _query_ with edismax

2021-09-11 Thread Dave
erated by the UI >> query console and just kept tweaking that. I supposed we could also just >> use postman to experiment using posts if that is supported. >>> >>> -----Original Message- >>> From: David Hastings >>> Sent: Friday, September 10

Re: qf with multiple fields in _query_ with edismax

2021-09-11 Thread Erik Hatcher
kept tweaking that. I supposed we could also just > use postman to experiment using posts if that is supported. > > > > -Original Message- > > From: David Hastings > > Sent: Friday, September 10, 2021 9:34 AM > > To: users@solr.apache.org > > Subject: R

Re: qf with multiple fields in _query_ with edismax

2021-09-10 Thread Dave
y > console and just kept tweaking that. I supposed we could also just use > postman to experiment using posts if that is supported. > > -Original Message- > From: David Hastings > Sent: Friday, September 10, 2021 9:34 AM > To: users@solr.apache.org > Subject: Re: qf

RE: qf with multiple fields in _query_ with edismax

2021-09-10 Thread Andy Coulson
We're also looking at Solrj to insulate us from the protocol layer entirely. -Original Message- From: Andy Coulson Sent: Friday, September 10, 2021 10:37 AM To: users@solr.apache.org Subject: RE: qf with multiple fields in _query_ with edismax Ahh, so yes, now I see. That is proba

RE: qf with multiple fields in _query_ with edismax

2021-09-10 Thread Andy Coulson
Ahh, so yes, now I see. That is probably a better approach as we actually implement this. -Original Message- From: Jan Høydahl Sent: Friday, September 10, 2021 10:12 AM To: users@solr.apache.org Subject: Re: qf with multiple fields in _query_ with edismax And if you fancy looking into

RE: qf with multiple fields in _query_ with edismax

2021-09-10 Thread Andy Coulson
ssage- From: David Hastings Sent: Friday, September 10, 2021 9:34 AM To: users@solr.apache.org Subject: Re: qf with multiple fields in _query_ with edismax Do you mind if I ask why not use a post to solr? On Fri, Sep 10, 2021 at 10:18 AM Andy Coulson wrote: > Thanks Erik, > > That

Re: qf with multiple fields in _query_ with edismax

2021-09-10 Thread Jan Høydahl
Type:part AND _query_:"{!edismax qf='object_name >> thing_name' pf=thing_name^10 v=$qq mm=$minMatch}"&qq=clutch >> cable&minMatch=100%&fl=*,score >> >> -Original Message- >> From: Erik Hatcher >> Sent: Friday, September 10, 20

Re: qf with multiple fields in _query_ with edismax

2021-09-10 Thread David Hastings
> From: Erik Hatcher > Sent: Friday, September 10, 2021 8:40 AM > To: users@solr.apache.org > Subject: Re: qf with multiple fields in _query_ with edismax > > Andy, > > Use single quotes around the inner parameters, such as {!edismax > qf='object_name thing_name'

RE: qf with multiple fields in _query_ with edismax

2021-09-10 Thread Andy Coulson
bject_name thing_name' pf=thing_name^10 v=$qq mm=$minMatch}"&qq=clutch cable&minMatch=100%&fl=*,score -Original Message- From: Erik Hatcher Sent: Friday, September 10, 2021 8:40 AM To: users@solr.apache.org Subject: Re: qf with multiple fields in _query_ with edismax And

Re: qf with multiple fields in _query_ with edismax

2021-09-10 Thread Erik Hatcher
Andy, Use single quotes around the inner parameters, such as {!edismax qf='object_name thing_name'}. Going even further, use the `v` parameter to encapsulate the query string inside as well, as the parser eats everything after the closing curly bracket otherwise. {!edismax qf='object_name t

qf with multiple fields in _query_ with edismax

2021-09-09 Thread Andy Coulson
There is precious little documentation on the _query_ magic field, but from what I understand, it should take whatever parameters are supported by parser. I am trying to provide multiple filed names to the qf parameter, but nothing I try works. Examples I have found googling indicate my syntax sh