ObjectIdには作成された日付が含まれていることを知っています。 ObjectIdのこの側面を照会する方法はありますか?
タイムスタンプをObjectIdにポップする は、ObjectIdに埋め込まれた日付に基づいたクエリを詳細にカバーします。
JavaScriptコードの簡単な説明:
// This function returns an ObjectId embedded with a given datetime
// Accepts both Date object and string input
function objectIdWithTimestamp(timestamp) {
// Convert string date to Date object (otherwise assume timestamp is a date)
if (typeof(timestamp) == 'string') {
timestamp = new Date(timestamp);
}
// Convert date object to hex seconds since Unix Epoch
var hexSeconds = Math.floor(timestamp/1000).toString(16);
// Create an ObjectId with that hex timestamp
var constructedObjectId = ObjectId(hexSeconds + "0000000000000000");
return constructedObjectId
}
// Find all documents created after midnight on May 25th, 1980
db.mycollection.find({ _id: { $gt: objectIdWithTimestamp('1980/05/25') } });
pymongo
では、次の方法で実行できます。
import datetime
from bson.objectid import ObjectId
mins = 15
gen_time = datetime.datetime.today() - datetime.timedelta(mins=mins)
dummy_id = ObjectId.from_datetime(gen_time)
result = list(db.coll.find({"_id": {"$gte": dummy_id}}))
Node.jsでmongodbドライバーが提供する組み込み関数を使用すると、任意のタイムスタンプでクエリを実行できます。
var timestamp = Date.now();
var objectId = ObjectID.createFromTime(timestamp / 1000);
あるいは、現在時刻より前のレコードを検索するには、次のようにします。
var objectId = new ObjectID(); // or ObjectId in the mongo Shell
ソース: http://mongodb.github.io/node-mongodb-native/api-bson-generated/objectid.html
ObjectIdの最初の4バイト タイムスタンプを表す から、コレクションを時系列で照会するには、単にIDで並べ替えます。
# oldest first; use pymongo.DESCENDING for most recent first
items = db.your_collection.find().sort("_id", pymongo.ASCENDING)
ドキュメントを取得したら、ObjectIdの 生成時間 を次のように取得できます。
id = some_object_id
generation_time = id.generation_time
find the Commandの検索方法(この日付[2015-1-12]からこの日付[2015-1-15]):
db.collection.find({_ id:{$ gt:ObjectId(Math.floor((new Date( '2015/1/12'))/ 1000).toString(16)+ "0000000000000000")、$ lt:ObjectId (Math.floor((new Date( '2015/1/15'))/ 1000).toString(16)+ "0000000000000000")}})。pretty()
コマンドを数えます(この日付[2015-1-12]からこの日付[2015-1-15]):
db.collection.count({_ id:{$ gt:ObjectId(Math.floor((new Date( '2015/1/12'))/ 1000).toString(16)+ "0000000000000000")、$ lt:ObjectId (Math.floor((new Date( '2015/1/15'))/ 1000).toString(16)+ "0000000000000000")}})
コマンドを削除します(この日付[2015-1-12]からこの日付[2015-1-15]):
db.collection.remove({_ id:{$ gt:ObjectId(Math.floor((new Date( '2015/1/12'))/ 1000).toString(16)+ "0000000000000000")、$ lt:ObjectId (Math.floor((new Date( '2015/1/15'))/ 1000).toString(16)+ "0000000000000000")}})
$convert
関数を使用して、4.0バージョンからObjectIdから日付を抽出できます。
何かのようなもの
$convert: { input: "$_id", to: "date" }
日付の開始時刻と終了時刻を比較して、日付を照会できます。
db.collectionname.find({
"$expr":{
"$and":[
{"$gte":[{"$convert":{"input":"$_id","to":"date"}}, ISODate("2018-07-03T00:00:00.000Z")]},
{"$lte":[{"$convert":{"input":"$_id","to":"date"}}, ISODate("2018-07-03T11:59:59.999Z")]}
]
}
})
OR
ショートハンド $toDate
を使用して同じことを実現できます。
db.collectionname.find({
"$expr":{
"$and":[
{"$gte":[{"$toDate":"$_id"}, ISODate("2018-07-03T00:00:00.000Z")]},
{"$lte":[{"$toDate":"$_id"},ISODate("2018-07-03T11:59:59.999Z")]}
]
}
})
Mongoコレクションで過去60日間の古いドキュメントを取得するには、シェルでクエリを使用しました。
db.collection.find({_id: {$lt:new ObjectId( Math.floor(new Date(new Date()-1000*60*60*24*60).getTime()/1000).toString(16) + "0000000000000000" )}})
範囲クエリを作成する場合は、 this post のように実行できます。たとえば、特定の日(2015年4月4日)のクエリ:
> var objIdMin = ObjectId(Math.floor((new Date('2015/4/4'))/1000).toString(16) + "0000000000000000")
> var objIdMax = ObjectId(Math.floor((new Date('2015/4/5'))/1000).toString(16) + "0000000000000000")
> db.collection.find({_id:{$gt: objIdMin, $lt: objIdMax}}).pretty()
ドキュメントから:
o = new ObjectId()
date = o.getTimestamp()
これにより、ISODateである日付が得られます。
http://www.mongodb.org/display/DOCS/Optimizing+Object+IDs#OptimizingObjectIDs-Extractinsertiontimesfromidratherthanhavingaseparatetimestampfield をご覧ください。詳細については
MongoObjectIDを使用すると、以下の結果も見つかるはずです。
db.mycollection.find({ _id: { $gt: ObjectId("5217a543dd99a6d9e0f74702").getTimestamp().getTime()}});