我可以按date查询MongoDB ObjectId吗?
我知道ObjectIds包含它们创build的date。 有没有办法来查询ObjectId的这个方面?
将时间戳记popup到ObjectIds中详细介绍了基于embedded在ObjectId中的date的查询。
简单地在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驱动程序提供的内置function,可以通过任何时间戳查询:
var timestamp = Date.now(); var objectId = ObjectID.createFromTime(timestamp / 1000);
或者,要在当前时间之前searchlogging,只需执行以下操作:
var objectId = new ObjectID(); // or ObjectId in the mongo shell
资料来源: http : //mongodb.github.io/node-mongodb-native/api-bson-generated/objectid.html
由于ObjectId的前4个字节表示时间戳 ,因此要按时间顺序查询您的集合,只需按IDsorting:
# 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命令(这个date[2015-1-12]到这个date[2015-1-15]):
db.collection.find({_ id:{$ gt:ObjectId(Math.floor((new Date('2015/1/12'))/ 1000).toString(16)+“0000000000000000”),$ lt:ObjectId ((新date('2015/1/15'))/ 1000).toString(16)+“0000000000000000”)}})。pretty()
计算命令(此date[2015-1-12]到此date[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”)}})
删除命令(此date[2015-1-12]到此date[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”)}})
为了得到mongo集合中最后60天的旧文档,我在shell中使用了下面的查询。
db.collection.find({_id: {$lt:new ObjectId( Math.floor(new Date(new Date()-1000*60*60*24*60).getTime()/1000).toString(16) + "0000000000000000" )}})
如果你想做一个范围查询,你可以像在这篇文章中那样做。 例如查询某一天(即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()
这样你的date是一个ISODate。
使用MongoObjectID你也应该find如下所示的结果
db.mycollection.find({ _id: { $gt: ObjectId("5217a543dd99a6d9e0f74702").getTimestamp().getTime()}});