[轉][solr] - 索引數據刪除

刪除solr索引數據,使用XML有兩種寫法:json

1)code

<delete><id>1</id></delete>
<commit/>

 

2)blog

<delete><query>id:1</query></delete>
<commit/>

 

刪除全部索引,這樣寫就能夠了:索引

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

 

注意:這個<commit/>節點不能少,不然刪除動做的事務不會提交。事務

刪除索引管理界面運行:it

 

也可使用POST數據到這個URL方式運行:class

http://localhost:8899/solr/mycore/update?wt=json

POST數據爲:date

<add commitWithin="1000" overwrite="true">
    <delete>
        <query>id:1</query>
    </delete>
    <commit></commit>
</add>
相關文章
相關標籤/搜索