要从Apache Solr的索引中删除文档,我们需要在<delete> </ delete>
标记之间指定要删除的文档的ID
。
<delete> <id>003</id> <id>005</id> </delete>
这里,此XML代码用于删除ID
为003
和005
的文档。将此代码保存在名称为delete.xml
的文件中。
如果要从属于名称为my_core
的核心的索引中删除文档,则可以使用post
工具发布delete.xml
文件,如下所示。
[web3@ubuntu:/usr/local/solr-6.4.0/bin]$ ./post -c my_core delete.xml执行上述命令后,将得到以下输出
web3@ubuntu:/usr/local/solr-6.4.0/bin$ ./post -c my_core delete.xml /usr/local/jdk1.8.0_65/bin/java -classpath /usr/local/solr-6.4.0/dist/solr-core-6.4.0.jar -Dauto=yes -Dc=my_core -Ddata=files org.apache.solr.util.SimplePostTool delete.xml SimplePostTool version 5.0.0 Posting files to [base] url http://localhost:8983/solr/my_core/update... Entering auto mode. File endings considered are xml,json,jsonl,csv,pdf,doc,docx,ppt,pptx,xls,xlsx,odt,odp,ods,ott,otp,ots,rtf,htm,html,txt,log POSTing file delete.xml (application/xml) to [base] 1 files indexed. COMMITting Solr index changes to http://localhost:8983/solr/my_core/update... Time spent: 0:00:00.124
q
中传递查询“:
”来检索所有文档,并执行查询。
有时,需要基于除ID
以外的字段来删除文档。例如,可能需要删除城市是Chennai
的文档。
在这种情况下,需要在<query> </ query>
标记对中指定字段的名称和值。
<delete> <query>city:Chennai</query> </delete>将上面代码保存到
delete_field.xml
文件中,并使用Solr的post
工具在核心my_core
上执行删除操作。
[web3@ubuntu:/usr/local/solr-6.4.0/bin]$ ./post -c my_core delete_field.xml执行上述命令后,将产生以下输出。
web3@ubuntu:/usr/local/solr-6.4.0/bin$ ./post -c my_core delete_field.xml /usr/local/jdk1.8.0_65/bin/java -classpath /usr/local/solr-6.4.0/dist/solr-core-6.4.0.jar -Dauto=yes -Dc=my_core -Ddata=files org.apache.solr.util.SimplePostTool delete_field.xml SimplePostTool version 5.0.0 Posting files to [base] url http://localhost:8983/solr/my_core/update... Entering auto mode. File endings considered are xml,json,jsonl,csv,pdf,doc,docx,ppt,pptx,xls,xlsx,odt,odp,ods,ott,otp,ots,rtf,htm,html,txt,log POSTing file delete_field.xml (application/xml) to [base] 1 files indexed. COMMITting Solr index changes to http://localhost:8983/solr/my_core/update... Time spent: 0:00:00.225
访问Apache Solr Web界面的主页,选择核心 - my_core。 尝试通过在文本区域q
中传递查询“:
”来检索所有文档,并执行查询。 执行时可以观察到包含指定字段值对的文档被删除。
类似删除一个指定删除某个字段一样,如果想删除索引中的所有文档,只需要在标签<query> </ query>
之间传递符号“:
”,如下所示。
<delete> <query>*:*</query> </delete>将上面代码保存到
delete_all.xml
文件中,并使用Solr的post
工具对核心my_core
执行删除操作。
[web3@ubuntu:/usr/local/solr-6.4.0/bin]$ ./post -c my_core delete_all.xml
执行上述命令后,将产生以下输出。
web3@ubuntu:/usr/local/solr-6.4.0/bin$ ./post -c my_core delete_all.xml /usr/local/jdk1.8.0_65/bin/java -classpath /usr/local/solr-6.4.0/dist/solr-core-6.4.0.jar -Dauto=yes -Dc=my_core -Ddata=files org.apache.solr.util.SimplePostTool delete_all.xml SimplePostTool version 5.0.0 Posting files to [base] url http://localhost:8983/solr/my_core/update... Entering auto mode. File endings considered are xml,json,jsonl,csv,pdf,doc,docx,ppt,pptx,xls,xlsx,odt,odp,ods,ott,otp,ots,rtf,htm,html,txt,log POSTing file delete_all.xml (application/xml) to [base] 1 files indexed. COMMITting Solr index changes to http://localhost:8983/solr/my_core/update... Time spent: 0:00:00.114
访问Apache Solr Web界面的主页,选择核心 - my_core。 尝试通过在文本区域q
中传递查询“:
”来检索所有文档,并执行查询。执行时您可以观察到包含指定字段值对的文档全被删除了。