我的文件看起来像这样。
{
"_id" : ObjectId("572c4bffd073dd581edae045"),
"name" : "What's New in PHP 7",
"description" : "PHP 7 is the first new major version number of PHP since 2004. This course shows what's new, and what's changed.",
"difficulty_level" : "Beginner",
"type" : "Normal",
"tagged_skills" : [
{
"_id" : "5714e894e09a0f7d804b2254",
"name" : "PHP"
}
],
"created_at" : 1462520831.649,
"updated_at" : 1468233074.243 }
是否可以在单个查询中获取最近的5个文档和总计数。 我正在使用两个查询来满足此要求。
db.course.find().sort({created_at:-1}).limit(5)
db.course.count()
答案 0 :(得分:3)
这对聚合框架来说是一个完美的工作。
db.course.aggregate(
[
{ "$sort": { "created_at": -1 }},
{ "$group": {
"_id": null,
"docs": { "$push": "$$ROOT" },
"count": { "$sum": 1 }
}},
{ "$project": { "_id": 0, "count": 1, "docs": { "$slice": [ "$docs", 5 ] } }}
]
)
如果您的MongoDB服务器不支持$slice
,那么您需要使用丑陋且低效的方法。
db.course.aggregate(
[
{ "$sort": { "created_at": -1 }},
{ "$group": {
"_id": null,
"docs": { "$push": "$$ROOT" },
"count": { "$sum": 1 }
}},
{ "$unwind": "$docs" },
{ "$limit": 5 }
]
)
答案 1 :(得分:1)
您可以使用$facet
myCollection.aggregate([
{
$facet: {
count: [{ $count: "value" }],
data: [{ $sort: { _id: -1 } }, { $skip: skip }, { $limit: limit }]
}
},
{ $unwind: "$count" },
{ $set: { count: "$count.value" } }
])
返回结果将是:
[
{
"count": 234,
"data": [
// ...
]
}
]
答案 2 :(得分:-1)
我亲自测试过的@styvane,此查询的效率甚至比两次查询还要低。
// get count
db.course.aggregate([{$match:{}}, {$count: "count"}]);
// get docs
db.course.aggregate(
[
{$match:{}},
{ "$sort": { "created_at": -1 }},
{"$skip": offset},
{"$limit": limit}
]
)
答案 3 :(得分:-4)
不,没有别的办法。两个查询 - 一个用于计数 - 一个用于限制。