solr删除数据

Posted BI实验室

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了solr删除数据相关的知识,希望对你有一定的参考价值。

方法一:web前端使用xml


<delete><query>*:*</query></delete>
<commit/>




2.linux下使用curl的 方式


curl  http://localhost:8080/update \

--data-binary  "<delete><query>title:abc</query></delete>"  \

-H 'Content- type :text/xml; charset=utf-8'

  

#删除完后,要提交   

  

curl  http://localhost:8080/update \

--data-binary  "<commit/>"  \

-H 'Content- type:text/xml; charset=utf-8'



10年BI老司机带你玩BI,快到群里来!



以上是关于solr删除数据的主要内容,如果未能解决你的问题,请参考以下文章

Solr 重复数据删除不起作用

solr删除全部索引数据

[solr] - 索引数据删除

[转][solr] - 索引数据删除

[solr 管理界面] - 索引数据删除

如何通过 curl 查询删除 SOLR 索引数据?