MongoDB group by hour(MongoDB 按小时分组)
问题描述
我将推文保存到 mongo DB:
I save tweets to mongo DB:
twit.stream('statuses/filter', {'track': ['animal']}, function(stream) {
stream.on('data', function(data) {
console.log(util.inspect(data));
data.created_at = new Date(data.created_at);
collectionAnimal.insert(data, function(err, docs) {});
});
});
没关系.
MongoDB 中的推文时间格式为:2014-04-25 11:45:14 GMT (column created_at)现在我需要在几小时内创建组列 created_at.我想要结果:
The tweet time in MongoDB is in format: 2014-04-25 11:45:14 GMT (column created_at) Now I need group column created_at in hours. I would like to have the result:
小时 |每小时计算推文
hour | count tweets in hour
1 |28
2 |26
3 |32
4 |42
5 |36
...
我的失败尝试:
$keys = array('created_at' => true);
$initial = array('count' => 0);
$reduce = "function(doc, prev) { prev.count += 1 }";
$tweetsGroup = $this->collectionAnimal->group( $keys, $initial, $reduce );
但我无法按小时分组.
怎么做?
推荐答案
我可以告诉你如何直接在 mongo 控制台上使用聚合框架进行分组
I could tell you how you can group using aggregation framework directly on mongo console
db.tweets.aggregate(
{ "$project": {
"y":{"$year":"$created_at"},
"m":{"$month":"$created_at"},
"d":{"$dayOfMonth":"$created_at"},
"h":{"$hour":"$created_at"},
"tweet":1 }
},
{ "$group":{
"_id": { "year":"$y","month":"$m","day":"$d","hour":"$h"},
"total":{ "$sum": "$tweet"}
}
})
更多选项你可以看这里:http://docs.mongodb.org/manual/reference/operator/aggregation-date/
For more options you can look here: http://docs.mongodb.org/manual/reference/operator/aggregation-date/
您还需要从所使用的任何一种编程语言中找到合适的方式来使用聚合框架.
You will also need to find appropriate way of of using aggregation framework from whichever programming language you are using.
这篇关于MongoDB 按小时分组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MongoDB 按小时分组
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01