これらはすべて私のコレクションのドキュメントです。
{
"_id" : ObjectId("5110291e6ee1c31d5b275d01"),
"d" : 24,
"s" : [
1,
2,
3
]
}
{
"_id" : ObjectId("511029266ee1c31d5b275d02"),
"d" : 24,
"s" : [
4,
5,
6
]
}
{
"_id" : ObjectId("5110292e6ee1c31d5b275d03"),
"d" : 24,
"s" : [
7,
8
]
}
これは私が実行したいクエリです:
mongo = get_collection(self.collection_name)
res = mongo.find().sort([('_id', -1)]).skip(1).limit(1)
get_collection()
私が作ったヘルパーメソッドです。カーソルを繰り返すと、res
ドキュメントは1つだけ生成されます。
res = mongo.find().sort([('_id', -1)]).skip(1).limit(1)
for document in res:
print document
> {u's': [4.0, 5.0, 6.0], u'_id': ObjectId('511029266ee1c31d5b275d02'), u'd': 24.0}
ただし、オフセットを使用してresにアクセスすると、0番目と1番目の要素に対して2つの異なるドキュメントが返されます。
res = mongo.find().sort([('_id', -1)]).skip(1).limit(1)
pprint(res[0])
> {u'_id': ObjectId('511029266ee1c31d5b275d02'), u'd': 24.0, u's': [4.0, 5.0, 6.0]}
pprint(res[1])
> {u'_id': ObjectId('5110291e6ee1c31d5b275d01'), u'd': 24.0, u's': [1.0, 2.0, 3.0]}
これはバグですか?limit(1)
1つの結果だけを返す必要がありますか?