Tôi có một schema.xml Solr như thế này:Làm thế nào để xóa dữ liệu được lập chỉ mục SOLR bằng truy vấn với curl?
<field name="cartype" type="lowercase" indexed="true" stored="true"/>
<field name="color" type="lowercase" indexed="true" stored="true"/>
Tôi muốn xóa "xanh" và "stationwagon" tagged hồ sơ từ cơ sở dữ liệu Solr với một lệnh curl.
Nhưng tôi đã không làm điều đó với lệnh sau:
curl http://46.231.77.98:7979/solr/update/?commit=true -H "Content-Type: text/xml" -d "<delete>(cartype:stationwagon)AND(color:blue)</delete>"
Bạn có bất cứ lời đề nghị?
Cảm ơn, nó hoạt động. –
Điều này tương đương với '+ cartype: stationwagon + color: blue'? – devios1