码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-07-07 11:50:08      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:date   ima   索引   host   alt   solr   bsp   http   技术分享   

删除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 管理界面] - 索引数据删除

标签:date   ima   索引   host   alt   solr   bsp   http   技术分享   

原文地址:http://www.cnblogs.com/faunjoe88/p/7131040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!