CREATEALIAS,SolrCloud跨Collection查询,太方便了!

前几天读了一篇博客 《Solr跨Collection查询》https://www.adamfei.com/solr-collection-inquiry/,之后去试了下。发现这个命令可以把几个collection整合起来搜索,而且不用处理他们的id(也就是说id可以重复),也不需要统一的config,实在是很方便。

新建的这个alias并不能在AdminUI中找到,但是用url搜索的时候是可以的。比如我要将index1和index2合在一起建立一个alias命名为test_index。那么输入
http://localhost:8983/solr/admin/collections?action=CREATEALIAS&name=test_index&collections=index1,index2
得到类似以下内容就成功了。

<response>
<lst name="responseHeader">
<int name="status">0int>
<int name="QTime">152int>
lst>
response>

然后去http://localhost:8983/solr/test_index/select?indent=on&q=:&wt=json就可以看到index1和index2集合的索引了。

你可能感兴趣的:(Solr)