solr删除所有索引信息

本文介绍如何使用Solr API来清空整个索引。通过发送特定的DELETE请求并提交更改,可以有效地删除所有已索引的文档。此外,还提供了一种简便的方法,即通过创建浏览器书签来快速执行这些操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

[url]http://wiki.apache.org/solr/FAQ[/url]


Use the "match all docs" query in a delete by query command: <delete><query>*:*</query></delete>

You must also commit after running the delete so, to empty the index, run the following two commands:

curl http://localhost:8983/solr/update --data '<delete><query>*:*</query></delete>' -H 'Content-type:text/xml; charset=utf-8'
curl http://localhost:8983/solr/update --data '<commit/>' -H 'Content-type:text/xml; charset=utf-8'
Another strategy would be to add two bookmarks in your browser:

[url]http://localhost:8080/solr/update?stream.body=<delete><query>*:*</query></delete>[/url]
[url]http://localhost:8080/solr/update?stream.body=<commit/>[/url]
And use those as you're developing to clear out the index as necessary.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值