[solr] - 索引数据删除

Posted 狗子的进阶史

tags:

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

删除solr索引数据,使用XML有两种写法:

1)

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

 

2)

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

 

删除所有索引,这样写就可以了:

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

 

注意:这个<commit/>节点不能少,否则删除动作的事务不会提交。

 

删除索引管理界面运行:

 

也可以使用POST数据到这个URL方式运行:

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

POST数据为:

复制代码
<add commitWithin="1000" overwrite="true">
    <delete>
        <query>id:1</query>
    </delete>
    <commit></commit>
</add>

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

[solr] - 索引数据删除

Solr09-SolrJ的简介和使用

solr 学习片段

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

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

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