Re: Query multiple collections together

2015-05-11 Thread Zheng Lin Edwin Yeo
Ok, thank you so much. Regards, Edwin On 11 May 2015 16:15, "Anshum Gupta" wrote: > FWIR, you just need to make sure that it's a valid collection. It doesn't > have to be one from the list of collections that you want to query, but the > collection name you use in the URL should exist. > e.g, as

Re: Query multiple collections together

2015-05-11 Thread Anshum Gupta
FWIR, you just need to make sure that it's a valid collection. It doesn't have to be one from the list of collections that you want to query, but the collection name you use in the URL should exist. e.g, assuming you have 2 collections foo (10 docs) and bar (5 docs): */solr/foo/select?q=*:*&collec

Re: Query multiple collections together

2015-05-11 Thread Zheng Lin Edwin Yeo
Thank you for the query. Just to confirm, for the 'gettingstarted' in the query, does it matter which collection name I put? Regards, Edwin On 11 May 2015 15:51, "Anshum Gupta" wrote: > You can query multiple collections by specifying the list of collections > e.g.: > > http://hostname:port >

Re: Query multiple collections together

2015-05-11 Thread Anshum Gupta
You can query multiple collections by specifying the list of collections e.g.: http://hostname:port /solr/gettingstarted/select?q=test&collection=collection1,collection2,collection3 On Sun, May 10, 2015 at 11:49 PM, Zheng Lin Edwin Yeo wrote: > Hi, > > Would like to check, is there a way to que