如何使用带有 spring-solr-data 的 solrTemplate 添加构面枢轴?
这个问题与How to facet.pivot with spring-data-solr有关,但我正在寻找使用 solrTemplate 的解决方案。
如何使用带有 spring-solr-data 的 solrTemplate 添加构面枢轴?
这个问题与How to facet.pivot with spring-data-solr有关,但我正在寻找使用 solrTemplate 的解决方案。
请查看ITestSolrTemplate.java#L451。
FacetQuery query = new SimpleFacetQuery(new Criteria("*").expression("*"));
query.setFacetOptions(new FacetOptions().addFacetOnPivot("category", "name"));
FacetPage<SolrBean> page = solrTemplate.queryForFacetPage(query, SolrBean.class);