Solr更新文件資料


使用XML更新文件

以下是用於更新現有文件中的欄位的XML檔案。將下面的內容儲存在名稱為update.xml的檔案中。

<add>   
   <doc>     
      <field name = "id">001</field>     
      <field name = "first name" update = "set">Raj</field>     
      <field name = "last name" update = "add">Malhotra</field>     
      <field name = "phone" update = "add">9000000000</field>    
      <field name = "city" update = "add">Delhi</field>   
   </doc> 
</add>

正如上面看到的,寫入更新資料的XML檔案就類似之前用來新增文件的XML檔案。 但唯一的區別是這裡使用欄位的一個update屬性。

在這個範例中,我們將使用上述文件並嘗試更新id001文件的欄位。

假設XML文件(update.xml)存在於Solr的bin目錄中。更新的核心是名稱為my_core的索引,可以使用post工具更新如下 -

[yiibai@ubuntu:/usr/local/solr-6.4.0/bin]$ ./post -c my_core update.xml

執行上述命令後,將得到以下輸出 -

yiibai@ubuntu:/usr/local/solr-6.4.0/bin$ ./post -c my_core update.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 update.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 update.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.246

驗證修改結果

存取Apache Solr Web介面的主頁,選擇核心 - my_core。 嘗試通過在文字區域q中傳遞查詢「」來檢索所有文件,並執行查詢。 執行時可以觀察到文件已經更新了。如下圖所示 -