Solr Query - HTTP error 404 undefined field text

后端 未结 5 1466
春和景丽
春和景丽 2020-12-24 07:18

I\'ve got a Solr instance running on my Ubuntu machine using the default Jetty server that the Solr download comes with. Whenever I start Solr using

5条回答
  •  爱一瞬间的悲伤
    2020-12-24 07:58

    The text field is composed of copies of another fields, as specified in the default schema.xml (when inserting a new document).

    So, when we have the df "text" in the solrconfig.xml, and we make a search without specifying the field on the solr admin page such as: video. It will be looked up in the text field (which is composed of copies of another fields).

提交回复
热议问题