MongoDB node-mongodb-native map / reduce

时间:2012-08-13 19:11:28

标签: javascript node.js mongodb database

我有一个使用node-mongodb-native的map / reduce方法。我试图只返回'product_id'上的不同记录。这就是我到目前为止所做的:

        var map = function() {
            emit("_id", {"_id" : this._id, 
                         "product_id" : this.product_id,
                         "name" : this.name 
                         });
        }

        var reduce = function(key, values) {

            var items  = [];
            var exists;

            values.forEach(function(value) {

                if(items.length > 0) {

                    items.forEach(function(item_val, key) {
                        if(item_val.product_id == value.product_id) {
                            exists = true;
                        }
                    });

                    if(!exists) {
                        items.push(value);
                    }

                    exists = false;

                } else {

                    items.push(value);
                }
            }); 

            return {"items" : items};
        }

        this.collection.mapReduce(map, reduce, {out : {inline: 1}, limit: 4}, function(err, results) {
            if (err) {
                console.log(err);
            } else {
                console.log(results[0].value.items);
            }
        });

我的逻辑似乎不起作用。它仍会添加重复记录,其中product_id是相同的。

任何帮助都会很棒 - 谢谢!

1 个答案:

答案 0 :(得分:2)

事实上,这是您尝试做的一个例子:

var map = function() {
    emit(this.product_id, {"_id" : this._id, "name" : this.name });
}

var finailise = function(key, value){
    return value[0]; // This might need tweaking, ain't done MRs in a while :/
}

请注意,有两种不同的类型:

  • 首先找
  • 上次查找

没有标准的方法可以区分,每个数据库都有自己的方法,它甚至不是SQL数据库的标准,因此您需要知道哪种方式要区分。上面的一个首先发现不同。你可以做一个最后的发现,如:

var finailise = function(key, value){
    return value[value.length-1]; 
}

或类似的东西,无论如何应该让你开始。

希望它有所帮助,