【Solr】Delete document data in core

It is recommended to use the xml method, the details are as follows:
Insert image description here
(Clear document data)

<delete>
<query>*:*</query>
<!-- 示例模糊删除:<query>name:*老六*</query> -->
</delete>
<commit/>

Guess you like

Origin blog.csdn.net/ruisasaki/article/details/131684796