如何计算猫鼬中具有一个不同字段的记录? [英] How to count records with one distinct field in mongoose?

查看:25
本文介绍了如何计算猫鼬中具有一个不同字段的记录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在为 nodejs 探索 mongoose 时,我遇到了需要知道我的集合中用户数量的问题:

While exploring mongoose for nodejs I ran into the problem of needing to know the amount of user in my collection:

我的收藏有记录,每条记录都有一个用户.我想知道唯一(不同)用户的数量.

My collection has records, each record has a user. I want to know the amount of unique (different) users.

我怎样才能用猫鼬做到这一点?

How can I do this with mongoose?

数据库增长很快,有没有办法从数据库中取回数字而不是获取所有不同的记录并计算它们?

The database is growing quite fast, is there anyway to get the number back from the DB instead of getting all the distinct records and counting them?

推荐答案

这是一个替代答案,因为当我尝试 Reddest 的 Mongoose 3.1.2 方法时遇到异常(这对我来说似乎是 Mongoose 中的一个错误,因为 Reddest 的方法应该没事).

Here's an alternative answer as I get an exception when I try Reddest's approach with Mongoose 3.1.2 (which seems like a bug in Mongoose to me as Reddest's approach should be fine).

您可以在集合的模型上调用 distinct 方法,指定该集合的用户标识字段的名称:

You can call the distinct method on your collection's model, specifying the name of the user-identifying field of that collection:

Record.distinct('user_id').exec(function (err, user_ids) {
    console.log('The number of unique users is: %d', user_ids.length);
});

或者,如果您想从查找中链接 distinct 调用,请在 distinct 调用中包含回调(这对我有用):

Or if you want to chain the distinct call from a find, include the callback in the distinct call (this did work for me):

Record.find().distinct('user_id', function (err, user_ids) { ... });

更新

如果您只想要计数而不获取值,请在链中添加 count() 调用:

If you just want the count without getting the values, stick a count() call in the chain:

Record.distinct('user_id').count().exec(function (err, count) {
    console.log('The number of unique users is: %d', count);
});

注意:这在最新的 Mongoose 代码 (3.5.2) 中不起作用.

NOTE: this doesn't work in the latest Mongoose code (3.5.2).

这篇关于如何计算猫鼬中具有一个不同字段的记录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆