0

クエリ時に Solr の検索結果を導くのが好きです。たとえばproducts、 と の 3 つのチャネルがfaqありother_docsます。同じフィールドが入力された同じ Solr コア内のすべて。私が受け入れたいのは、Solrに結果の「チャネル」をグループ化させることです。

サンプル データベース (csv):

id,channel,name,desc
1,product,Some product,This is an very cool product!
2,product,Other product,This is an other product!
3,faq,How to stuff,This time: Simply do it!
4,other_docs,Legal notice,All your base are belong to us!

必要なクエリ結果 (xml):

<?xml version="1.0" encoding="UTF-8"?>
<response>

<lst name="grouped">
  <lst name="channel">
    <int name="matches">3</int>
    <arr name="groups">
      <lst>
        <str name="groupValue">product</str>
        <result name="doclist" numFound="2" start="0">
          <doc>
            <str name="name">Some product</str>
            <str name="desc">This is an very cool product!</str></doc>
          <doc>
            <str name="name">Other product</str>
            <str name="desc">This is an other product!</str></doc>
        </result>
      </lst>
      <lst>
        <str name="groupValue">faq</str>
        <result name="doclist" numFound="1" start="0">
          <doc>
            <str name="name">How to stuff</str>
            <str name="desc">This time: Simply do it!</str></doc>
        </result>
      </lst>
    </arr>
  </lst>
</lst>
</response>

これをどのように受け取りますか?

4

1 に答える 1