我有一个这样的 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>"
你有什么建议吗?