23

次のような SOLR schema.xml があります。

<field name="cartype" type="lowercase" indexed="true" stored="true"/>
<field name="color" type="lowercase" indexed="true" stored="true"/>

curl コマンドを使用して、SOLR データベースから「blue」および「stationwagon」のタグ付きレコードを削除したいと考えています。

しかし、次のコマンドではそれをしませんでした:

curl http://46.231.77.98:7979/solr/update/?commit=true -H "Content-Type: text/xml" -d "<delete>(cartype:stationwagon)AND(color:blue)</delete>"

何か提案はありますか?

4

3 に答える 3

34

タグを追加する必要がありますquery

<delete><query>(cartype:stationwagon)AND(color:blue)</query></delete>
于 2012-01-04T00:21:59.673 に答える