Hi, I try to using Solr filtering by fq below query. http://solr:8983/solr/select/?q=*:*&fq=foo_num:0&start=0&rows=10 This result response included 'numFound="106"' .
Meanwhile, filtering by q below query. http://solr:8983/solr/select/?q=*:*+foo_num:0&start=0&rows=10 This result response included 'numFound="20304"' . I don't know what's so wrong... I understood that "+" means "AND" in q logical expression.