MongoDB 2.6 兼容性改变 -- db.collection.aggregate()改变描述db.collection.aggregate()方法在monGo shell中,默认返回结果集的游标。这
MongoDB 2.6 兼容性改变 -- db.collection.aggregate()改变
描述
db.collection.aggregate()方法在monGo shell中,默认返回结果集的游标。这个修改使得聚合管道返回任何大小的结果集,需要游标遍历来访问结果集。例如:
var myCursor = db.orders.aggregate( [
{
$group: {
_id: "$cust_id",
total: { $sum: "$price" }
}
}
] );
myCursor.forEach( function(x) { printJSON (x); } );
之前的版本返回带有字段result的单一文档,它包含了结果集的一个数组,受限于BSON文档大小限制。在mongoDB之前的版本访问结果集需要访问result字段,并遍历数组。例如:
var returnedDoc = db.orders.aggregate( [
{
$group: {
_id: "$cust_id",
total: { $sum: "$price" }
}
}
] );
var myArray = returnedDoc.result; // access the result field
myArray.forEach( function(x) { printjson (x); } );
解决方案
修改脚本,当前期待db.collection.aggregate()返回一个文档带result数组字段,替换为处理游标。
可以参考
聚合增强
db.collection.aggregate()
--结束END--
本文标题: MongoDB 2.6 兼容性改变 -- db.collection.aggregate()改变
本文链接: https://lsjlt.com/news/43824.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0