要從Apache Solr的索引中刪除文件,我們需要在<delete> </ delete>
標記之間指定要刪除的文件的ID
。
<delete>
<id>003</id>
<id>005</id>
</delete>
這裡,此XML程式碼用於刪除ID
為003
和005
的文件。將此程式碼儲存在名稱為delete.xml
的檔案中。
如果要從屬於名稱為my_core
的核心的索引中刪除文件,則可以使用post
工具發布delete.xml
檔案,如下所示。
[yiibai@ubuntu:/usr/local/solr-6.4.0/bin]$ ./post -c my_core delete.xml
執行上述命令後,將得到以下輸出 -
yiibai@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
存取Apache Solr Web介面的主頁,選擇核心 - my_core。 嘗試通過在文字區域q
中傳遞查詢「:
」來檢索所有文件,並執行查詢。 執行時可以觀察到指定的文件(ID
為003
和005
)已刪除。
有時,需要基於除ID
以外的欄位來刪除文件。例如,可能需要刪除城市是Chennai
的文件。
在這種情況下,需要在<query> </ query>
標記對中指定欄位的名稱和值。
<delete>
<query>city:Chennai</query>
</delete>
將上面程式碼儲存到delete_field.xml
檔案中,並使用Solr的post
工具在核心my_core
上執行刪除操作。
[yiibai@ubuntu:/usr/local/solr-6.4.0/bin]$ ./post -c my_core delete_field.xml
執行上述命令後,將產生以下輸出。
yiibai@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
執行刪除操作。
[yiibai@ubuntu:/usr/local/solr-6.4.0/bin]$ ./post -c my_core delete_all.xml
執行上述命令後,將產生以下輸出。
yiibai@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
中傳遞查詢「:
」來檢索所有文件,並執行查詢。執行時您可以觀察到包含指定欄位值對的文件全被刪除了。
以下是使用Java程式向Apache Solr索引刪除文件。將此程式碼儲存在名稱為DeletingAllDocuments.java
的檔案中。
import java.io.IOException;
import org.apache.Solr.client.Solrj.SolrClient;
import org.apache.Solr.client.Solrj.SolrServerException;
import org.apache.Solr.client.Solrj.impl.HttpSolrClient;
import org.apache.Solr.common.SolrInputDocument;
public class DeletingAllDocuments {
public static void main(String args[]) throws SolrServerException, IOException {
//Preparing the Solr client
String urlString = "http://localhost:8983/Solr/my_core";
SolrClient Solr = new HttpSolrClient.Builder(urlString).build();
//Preparing the Solr document
SolrInputDocument doc = new SolrInputDocument();
//Deleting the documents from Solr
Solr.deleteByQuery("*");
//Saving the document
Solr.commit();
System.out.println("Documents deleted");
}
}
通過在終端中執行以下命令編譯上述程式碼 -
[yiibai@ubuntu:/usr/local/solr-6.4.0/bin]$ javac DeletingAllDocuments.java
[yiibai@ubuntu:/usr/local/solr-6.4.0/bin]$ java DeletingAllDocuments
執行上述命令後,將得到以下輸出。
Documents deleted