我在文档中有4个字段name
,online
,like
和score
。我想通过多个字段和条件来订购带有分页的百万份文件。
示例一些文件:
我的用户文档:
{ "_id": 1, "name": "A", "online": 1, "like": 10, "score": 1 },
{ "_id": 2, "name": "B", "online": 0, "like": 9, "score": 0 },
{ "_id": 3, "name": "C", "online": 0, "like": 8, "score": 1 },
{ "_id": 4, "name": "D", "online": 1, "like": 8, "score": 0 },
{ "_id": 5, "name": "E", "online": 1, "like": 7, "score": 1 },
{ "_id": 6, "name": "F", "online": 0, "like": 10, "score": 0 },
我将通过以下示例解释我的观点(使用数组的示例)。
ruby语言的例子,我的数组结构如下:
[["A", 1, 10, 1],
["B", 0, 9, 1],
["C", 0, 8, 1],
["D", 1, 8, 0],
["E", 1, 7, 1],
["F", 0, 10, 0]]
如果online
1
应该按like
的降序再次排序,但online
0
时应按score
的降序排序1}}。
示例排序:
list.sort{|a, b| a[1] == 1 ? ([-a[1], -a[2]] <=> [-b[1], -b[2]]) : ([-a[1], -a[3]] <=> [-b[1], -b[3]]) }
结果如下:
[["A", 1, 10, 1],
["D", 1, 8, 0],
["E", 1, 7, 1],
["B", 0, 9, 1],
["C", 0, 8, 1],
["F", 0, 10, 0]]
这是一个数组排序,但我的问题是我有mongodb和百万文档的集合,我不能使用数组排序,因为它会加载到数据库,应该获取所有文件并转换为数组(包括排序) )并且对它们进行分页,我认为这是一个坏主意。
我尝试使用order()
/ order_by()
mongoid的可选方法,如:
User.
order_by([:online, :desc], [:like, :desc], [:score, :desc]).
hint(online: -1, like: -1, score: -1).
page(1).per(10)
但是该查询只是online
和score
的顺序,mongoid中的排序方法是否像数组排序一样?或者在mongodb中有类似冒泡的东西?
同样的问题:Ruby on Rails: Concatenate results of Mongoid criterias and paging,merge
方法对我没有帮助,因为它可以替代第一个标准。
答案 0 :(得分:1)
使用聚合$cond
User.collection.aggregate([
{
"$project" => {
"id" => 1,
"name" => 1,
"online" => 1,
"like" => 1,
"score" => 1,
"sort" => {
"$cond" => {
"if" => {
"$eq" => ["$online", 1]
},
"then" => "$like",
"else" => "$score"
}
}
}
},
{
"$sort" => {
"online" => -1,
"sort" => -1,
"id" => 1
}
},
{
"$skip" => 0
{
"$limit" => 12
}
])
参考: