Solr search query over multiple fields

前端 未结 4 2115
猫巷女王i
猫巷女王i 2020-12-14 00:30

Is it possible to search in Solr over two fields using two different words and get back only those results which contain both of them?

For example, if I have fields

4条回答
  •  萌比男神i
    2020-12-14 00:50

    fq=type:furniture AND location:office
    

    Instead of using AND, this could be break into two filter queries as well.

    fq=type:furniture
    fq=location:office
    

提交回复
热议问题