Deleting solr documents from Solr Admin

前端 未结 4 1411
死守一世寂寞
死守一世寂寞 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:34

    Use one of the queries below in the Document tab of Solr Admin UI:

    XML:

    *:*
    

    JSON:

    {'delete': {'query': '*:*'}}
    

    Make sure to select the Document Type drop down to Solr Command (raw XML or JSON).

提交回复
热议问题