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" OR "Test3" OR "Test4") http://localhost:8983/solr/collection1/mlt?q=title:"ABC"&fq=Source:("Test2") The Source field filter differs in both cases. What I'm looking is to combine the top 4 from query 1 and top 4 from query 2. I was exploring the option to combine into a single query instead of two. Is it possible ? Any pointer will be appreciated. -Thanks, Shamik