Hello,

    I have 2 different solr indexes returning 2 different sets of
SolrDocumentList. Doc Id is the foreign key relation.

After obtaining them, I want to perform "AND" operation between them and
then return results to user. Can you tell me how do I get this? I am using
solr 4.3

 SolrDocumentList results1 = responseA.getResults();
 SolrDocumentList results2 = responseB.getResults();

results1  : d1, d2, d3
results2  :  d1,d2, d4

Return : d1, d2

Regards,
Michael

Reply via email to