'reduce' 使用 Cloudant 搜索的结果吗?

Do 'reduce' with results from Cloudant search?

在 Cloudant 中,是否可以对来自搜索索引(而不是视图)的一组结果进行缩减?

在我的例子中,我想找到标题值包含 'foo' 的所有文档,然后根据每个文档的 viewCount 值对每个文档的浏览总数求和。

你不能reduce,但你可以使用分面来获取计数。

示例查询 ?q=*:*&counts=["type"]

示例响应

{
  "total_rows":100000,
  "bookmark":"g...",
  "rows":[...],
  "counts":{
    "type":{
      "sofa": 10, 
      "chair": 100,
      "lamp": 97
    }
  }
}

https://docs.cloudant.com/search.html#faceting