我面临Solr过滤器和AND查询的奇怪问题。 下面是此问题的示例。
http://localhost:8983/solrcloud/bbconfig/select?indent=on&q=sku:800456652
<result name="response" numFound="1" start="0">
<doc>
<long name="sku">800456652</long>
<long name="parent_store_81_i">1</long>
</doc>
</result>
但是,一旦我对动态字段“ parent_store_81_i”进行了过滤,其返回的结果将为“无”。
http://localhost:8983/solrcloud/bbconfig/select?indent=on&q=parent_store_81_i:1和sku:800456652
<result name="response" numFound="0" start="0"> </result>