我正在使用 MongoDB 1.6.3 来存储一个大集合(300k+ 记录)。我添加了一个复合索引。
db['collection_name'].getIndexes()
[
{
"name" : "_id_",
"ns" : "db_name.event_logs",
"key" : {
"_id" : 1
}
},
{
"key" : {
"updated_at.t" : -1,
"community_id" : 1
},
"ns" : "db_name.event_logs",
"background" : true,
"name" : "updated_at.t_-1_community_id_1"
}
]
但是,当我尝试运行此代码时:
db['collection_name']
.find({:community_id => 1})
.sort(['updated_at.t', -1])
.skip(@skip)
.limit(@limit)
我正进入(状态:
Mongo::OperationFailure (sort() 没有索引的数据太多。添加索引或指定更小的限制)
我究竟做错了什么?