什么是 solr XML Query 来删除我尝试过的核心中的所有数据,
curl http://localhost:8983/solr/core0/update?commit=true -H "Content-Type: text/xml" --data-binary '<delete><query>id:*</query></delete>'
问问题
6239 次
2 回答
7
你可以试试 :-
卷曲 -
curl -H 'Content-Type: text/xml' http://localhost:8983/solr/update --data-binary '<delete><query>*:*</query></delete>'
请务必使用 commit=true 来反映这些更改。
或从浏览 -
http://localhost:8983/solr/update?stream.body=<delete><query>*:*</query></delete>&commit=true
于 2012-08-21T08:05:55.640 回答
1
在 cmd 中使用 java 的另一个选项: java -Durl=http://localhost:8983/solr/update -Ddata=args -Dcommit=yes -jar post.jar " : " 所有这些都在 post 目录中。
于 2012-12-18T09:11:15.540 回答