当我尝试使用query删除文档时,如下所示:
我明白了:
<response>
<lst name="responseHeader">
<int name="status">400</int>
<int name="QTime">49</int>
</lst>
<lst name="error">
<str name="msg">undefined field productId</str>
<int name="code">400</int>
</lst>
</response>
根据http://localhost:8090/solr/#/webshop/schema productId存在:
<field name="productId" type="string" indexed="true" stored="true" required="true" multiValued="false" termVectors="false" />
[...]
<uniqueKey>productId</uniqueKey>
这很好用:http://localhost:8090/solr/webshop/select?q=productId%3A38214&wt=json&indent=true
我缺少什么?
答案 0 :(得分:0)