最速の方法は、timestamp
でインデックスを作成することです。 フィールド。
Creating index:
db.posts.ensureIndex( { timestamp : 1 } )
Optimizes this query:
db.posts.find().sort( { timestamp : -1 } )
findOne
最後のタイムスタンプを1つだけ与えます。
よろしくお願いします。
最速の方法は、timestamp
でインデックスを作成することです。 フィールド。
Creating index:
db.posts.ensureIndex( { timestamp : 1 } )
Optimizes this query:
db.posts.find().sort( { timestamp : -1 } )
findOne
最後のタイムスタンプを1つだけ与えます。
よろしくお願いします。