0

Please refer My previous question .

With respect to the this answer for my question, I could do with one filed.

I Could not able to do with multiple fields.

http://$solr_host:8983/solr/magazines/select&q=sport+education&df=title&q.op=OR - this is working for one field. How can I do it for multiple field.

What is the right way to achieve my objective. Thank you in advance.

Community
  • 1
  • 1
Naga
  • 2,190
  • 3
  • 16
  • 21

1 Answers1

1

Use Dismax/eDismax with qf (Query Fields) Parameter.

example:

http://$solr_host:8983/solr/magazines/select&q=sport+education&defType=edismax&qf=title name&q.op=OR

Check this here

Vinod
  • 1,965
  • 1
  • 9
  • 18
  • Thank you for your answer and reference... Will check further and accept your answer if it help me to achieve my objective! – Naga Dec 23 '16 at 09:46