dongzouqie4220 2015-05-02 12:23
浏览 127
已采纳

Solr - 如何在不通过查询字段的情况下搜索所有字段?

I have tried as below,

<field name="collector" type="text_general" indexed="true" stored="false"  multiValued="true" />

and copy all my fields to copyField as below,

<copyField source="fullname" dest="collector"/>
<copyField source="email" dest="collector"/>
<copyField source="city" dest="collector"/>

and also I have put all copyField tags below

<fields>

</fields>

tags. But I cant search in all fields. I have to pass fullname before query like,

q=fullname:Mayur

I want search by,

q=Mayur

And I should search all fields contains Mayur word.

Help me please

  • 写回答

2条回答 默认 最新

  • duanjian7617 2015-05-03 03:44
    关注

    make sure the fields have stored=true

    <field name="field_name" type="text_general" indexed="true" stored="true"/>
    

    True if the value of the field should be retrievable during a search.

    Use the Default Search Field : The is used by Solr when parsing queries to identify which field name should be searched in queries where an explicit field name has not been used.

    <defaultSearchField>collector</defaultSearchField>
    

    in your schema.xml

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?