在Mongo中按子字符串聚合

时间:2018-11-19 12:49:28

标签: mongodb aggregation

我有一组对象,例如:

{
  "_id":"mongoid",
  "requests": {
     "uri": "test.php",
     "clicks" : 15
   },
},
{
  "_id":"mongoid",
  "requests": {
     "uri": "test.php/",
     "clicks" : 10
   }
}

是否可以通过字段requests.uri进行汇总(Mongo必须将“ test.php”和“ test.php /”理解为相同)来获得总计25的点击次数? Mongo版本是3.2。 我看过here,但是主要区别是uri可以有各种长度。 感谢大家的帮助。

0 个答案:

没有答案