Hi All, I was curious to know how multiple Collection communication be achieved? If yes then by what means.
The use case says, having multiple collection I need to query the first collection and get the unique ids from first collection to query the second one(Foreign Key Relation). Now if the no. of terms to be passed to second collection is relatively small then its fine otherwise the problem arise, as adding them to the query is little time consuming in sense of building the query, querying to solr and waiting for the result to respond back. So the query would look something like - http://localhost:7070/solr/mycollection/select?q= <http://localhost:7070/solr/recollection/select?q=*:*&fl=id&sort=id_S%20desc>ID:( 1 OR 2 OR ... OR 100000)&fl=* So for the above form of query where the query terms are expanding vigorously I was looking out for some solution where the collections can internally resolve the query and fetch the resultant output. Thanks!