0

在我的 solr 管理员中,我正在像这样查询 -

http:// :8080/solr/realestatecategory/select?q= %3A &fl=propcategory&wt=json&indent=true

它会返回我的记录,例如

{
  "responseHeader":{
    "status":0,
    "QTime":4},
  "response":{"numFound":4,"start":0,"docs":[
      {
        "propcategory":"Residential Property"},
      {
        "propcategory":"Residential Property"},
      {
        "propcategory":"Commercial Property"},
      {
        "propcategory":"Invest"}]
  }}

我想避免像“住宅物业”这样的重复记录。怎么做 ?

快速回答问题,因为我急需帮助。

4

2 回答 2

1

您将需要使用分组。

group=true与 一起使用group.field=propcategory

详情请看这里

于 2013-06-20T15:27:48.450 回答
0

如果您只想要一个唯一的记录列表,您也可以检查Solr faceting
它将给出带有计数的项目列表。

于 2013-06-21T04:33:57.467 回答