Is it possible to search in Solr over two fields using two different words and get back only those results which contain both of them?
For example, if I have fields
fq=type:furniture AND location:office
Instead of using AND, this could be break into two filter queries as well.
fq=type:furniture fq=location:office