Just wondering if it's possible to combine to separate MLT queries (based on filtering condition) into a single one. I'm trying to combine the results of this two query:
http://localhost:8983/solr/collection1/mlt?q=title:"ABC"&fq=Source:("Test1")
http://localhost:8983/solr/collection1/mlt?q=title:"ABC"&fq=Source:("Test2")
The Source field have different values for the two queries. I would like to combine the results of the two queries, is it possible to do it in a single query?
Any pointer will be appreciated.