I need to compare the results of muliple schema using Solr.
Is there any way to acheive this.
Thanks in advance.
|
|
A single index defines a unified schema for all entities, however you can use multiple indexes by using solr multicore concept. please refer to http://wiki.apache.org/solr/CoreAdmin . You can configure each schema as a separate core to maintain the separation how ever you can still use all the cores to search by adding following param to the request url shards="core_url1, core_url2, ..." |
|||||
|