SolrBundle
SolrBundle copied to clipboard
New master-dev error
Hi, you do some changes and solr not work;
old version query :
omitHeader=true wt=json json.nl=flat q=*:* start=0 rows=12 fl= sort=random_3225 ASC fq=sta:1
after composer update : there is automatic add ** fq=id:product_* **
omitHeader=true wt=json json.nl=flat q=*:* start=0 rows=12 fl= sort=random_3225 ASC fq=sta:1 fq=id:product_*
You can remove the new id filter query and add the document-limitation as custom-query:
$query->setCustomQuery('id:product_*');
$query->removeFilterQuery('id');
I have tried your suggestion but the problem is still there.
does omitHeader=true wt=json json.nl=flat q=*:* start=0 rows=12 fl= sort=random_3225 ASC fq=sta:1
works for you?
@muganda ping