MongoDB计算不同的值?

时间:2014-09-17 10:26:02

标签: javascript node.js mongodb mongodb-query aggregation-framework

下面显示我的代码。我必须计算重复的不同值的次数。在这里,我在“结果”中存储了不同的值。我使用collection.count()来计算,但它不起作用。请任何人告诉我哪里有错误。非常感谢你。

var DistinctIntoSingleDB = function(Collection,arr,opt,distVal,callback){
 Collection.find({}).distinct(distVal, function(err, results) {
      if(!err && results){
            console.log("Distinct Row Length :", results.length);
            var a,arr1 = [];
            for(var j=0; j<results.length; j++){
                collection.count({'V6': results[j]}, function(err, count) {
                      console.log(count)
                });

                arr1.push(results[j]+ " : " +a);
            }
            callback(results,arr1);
      }else{
           console.log(err, results);
           callback(results);
      }
 });

2 个答案:

答案 0 :(得分:8)

虽然.distinct()适用于获取字段的不同值,但为了实际获取出现次数,这更适合aggregation framework

Collection.aggregate([
    { "$group": {
        "_id": "$field",
        "count": { "$sum": 1 }
    }}
],function(err,result) {

});

.distinct()方法也是&#34;抽象&#34;从指定的&#34; distinct&#34;字段实际上在一个数组中。在这种情况下,您需要先调用$unwind来处理数组元素:

Collection.aggregate([
    { "$unwind": "$array" },
    { "$group": {
        "_id": "$array.field",
        "count": { "$sum": 1 }
    }}
],function(err,result) {

});

所以主要工作基本上是在$group by&#34;分组&#34;在字段值上,这意味着与#34; distinct&#34;相同。 $sum是一个分组运算符,在这种情况下,只是在该集合的字段中为该值的每次出现添加1

答案 1 :(得分:0)

要获得字段&#39; field1&#39;的不同值的出现?在一个集合&#39; col1&#39;并写一个单独的集合“distinctCount”#39;如果集合很大,也允许使用磁盘空间。

db.col1.aggregate(
          [{$group: {
              _id: "$field1",
              count: { $sum : 1 }
            }}, {
            $group: {
              _id: "$_id",
              count: { $sum : "$count" }
            }},{
              $out: "distinctCount"
            }],
         {allowDiskUse:true}
)