Is it possible to search (with apache Solr) for items which are in one of few categories using filter query, e.g. items in category 'computers' OR 'phones'
When I want to search for items in category computers AND phones I type:
select/?q=...&fq=cat:computers&fq=cat:phones
but it is possible to use OR instead of AND?
OR
AND
You can use
fq=cat:(computers OR phones)
2.1m questions
2.1m answers
60 comments
57.0k users