Deleting solr documents from Solr Admin

前端 未结 4 1415
死守一世寂寞
死守一世寂寞 2021-01-30 13:06

How do I delete all the documents in my SOLR index using the SOLR Admin.

I tried using the url and it works but want to know if the same can be done using the Admin..

4条回答
  •  滥情空心
    2021-01-30 13:12

    curl http://localhost:8080/solr/update -H "Content-type: text/xml" --data-binary '*:*'
    curl http://localhost:8080/solr/update -H "Content-type: text/xml" --data-binary ''

提交回复
热议问题