Hi there! So, this is not related to SolrMARC at all. Any given
blacklight search can only access one index, but by cleverly setting
configuration variables, you can have a single web application search
a variety of cores.
http://cliobeta.columbia.edu works with two separate solr indices. The
academic commons 'source' is searching one solr, the catalog 'source'
is searching another. You can search them separately, or the quick
search does both.
We do this (and quite possibly, there are better ways) have a method
that runs before any search that does this:
if source == "Academic Commons"
Blacklight.solr = RSolr::Ext.connect(:url => APP_CONFIG[:ac2_solr_url])
else
Blacklight.solr = RSolr::Ext.connect(:url =>
APP_CONFIG[:catalog_solr_url])
end
As far as actually combining results from multiple solr indices in one
result set, solr, as far as I know, doesn't have any capacity to
search across multiple cores.
On Tue, Sep 18, 2012 at 2:09 PM, Sheila <
sbla...@utk.edu> wrote:
> Hi, I am working on a project that is using Blacklight with Solr. We have
> not been able to get Blacklight to work with multi-cores in Solr. We can
> only get it to work with a single core. Can Blacklight work with multi-cores
> in Solr? If not, can you tell me why it can't or what the problem is? Is it
> related to SolrMARC at all? Thanks for your help!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Blacklight Development" group.
> To view this discussion on the web visit
>
https://groups.google.com/d/msg/blacklight-development/-/04HqS0_u6HkJ.
> To post to this group, send email to
>
blacklight-...@googlegroups.com.
> To unsubscribe from this group, send email to
>
blacklight-develo...@googlegroups.com.
> For more options, visit this group at
>
http://groups.google.com/group/blacklight-development?hl=en.