次のような 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>"
何か提案はありますか?