ongr.io 的 ElasticSearchBundle 是否可以进行多索引搜索?

Is multi index search possible with ongr.io's ElasticSearchBundle?

我正在研究 ongr.io 的 ElasticSearchBundle,但找不到执行多索引搜索或查询的方法。我是不是忽略了什么,或者只是不可能(还)?

根据文档,您指定了在 configuration and not when performing the search 中使用的索引。

您可以为多索引搜索创建一个单独的管理器,并定义以逗号分隔的索引名称。

connections:
    default:
        hosts:
            - 127.0.0.1:9200
        index_name: "firstIndex,secondIndex"