如何在 Solr 中加载多个模式?
我需要使用 Solr 比较多个模式的结果。
有什么办法可以达到这个目的吗?
提前致谢。
I need to compare the results of muliple schema using Solr.
Is there any way to acheive this.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
单个索引为所有实体定义了统一的模式,但是您可以通过使用 solr 多核概念来使用多个索引。请参考 http://wiki.apache.org/solr/CoreAdmin 。
您可以将每个架构配置为单独的核心以保持分离,但您仍然可以通过将以下参数添加到请求网址来使用所有核心进行搜索
shards="core_url1, core_url2, ..."
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, ..."