我可以按日期查询MongoDB ObjectId吗?


Answers:


224

将时间戳弹出到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') } });

29
非常方便..仅供参考,您可以将此功能保存在~/.mongorc.js文件中,以便在mongoShell启动时可用。
Stennie 2012年

1
我收到ReferenceError:未定义ObjectId。我该如何解决?
彼得2013年

3
我在mongodbnative中使用nodejs。通过包含var ObjectId = require('mongodb')。ObjectID;修复了“未定义的错误”。
彼得2013年

1
如果您正在使用Mongoskin像我这样做:更改ObjectId(hexSeconds + "0000000000000000");db.ObjectID.createFromHexString(hexSeconds + "0000000000000000");
安德斯Östman

2
或者,在Mongoose中,替换ObjectId()为:require('mongoose').Types.ObjectId()- require('mongoose')初始化/配置的Mongoose实例在哪里。
toblerpwn14年

34

使用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-generation/objectid.html


3
这是从javascript env中的时间戳创建ObjectId的最好/最简单的方法。操作人员要求的是什么...
AndersÖstman'15

34

在中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}}))

请注意,使用datetime.datetime.utcnow()或datetime.datetime.today()将返回相同的结果。日期时间为您处理。
radtek

或者,不使用pymongo依赖项:(epoch_time_hex = format(int(time.time()), 'x') 不要忘记为查询添加零)使用了时间包(import time)。
VasiliNovikov

意识到OP要求使用javascript,但这确实帮助我简化了代码。谢谢。
Fred S

14

由于ObjectId的前4个字节表示一个timestamp,要按时间顺序查询您的集合,只需按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

1
我希望有一种实际上可以做的事情,例如使用ObjectId中嵌入的时间对在一定时间之前创建的对象进行计数,但是似乎无法直接访问。谢谢。
2012年

1
您可以这样做,查看Leftium的答案。
2012年

13

如何查找查找命令(此日期[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”)}})


10

您可以使用$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")]}
    ]
  }
})

要么

您可以使用速记$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")]}
    ]
  }
})

只是想问问使用$ convert或$ toDate,Mongo首先必须进行转换,然后比较doc是否在范围内,但是如果我使用接受的答案的方法,那么只需将日期转换为ObjectId在客户端,而且只有一次,那么您难道认为解决方案不会比这更有效吗?无论如何,感谢您告诉我们这两个操作员也存在:)
Sudhanshu Gaur

7

为了获得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" )}})

1
使用$ gt代替$ lt。否则,它将查找之前(今天60天)插入的文档。
yoooshi

1
@Vivek ObjectId的前4个字节代表自unix纪元(1970/1/1 00:00:00 UTC)以来的秒数,因此可以将其与大于($ gt)和小于($ lt)查找在特定窗口内创建的对象。
约翰,

5

如果你想使一个范围查询,你可以像在这篇文章。例如,查询特定日期(即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()


2

使用MongoObjectID,您还应该找到如下所示的结果

db.mycollection.find({ _id: { $gt: ObjectId("5217a543dd99a6d9e0f74702").getTimestamp().getTime()}});

3
您的查询语句假设一个人知道以ObjectId开头的值,但情况并非总是如此。
德怀特·斯潘塞

0

在rails中,mongoid您可以使用

  time = Time.utc(2010, 1, 1)
  time_id = ObjectId.from_time(time)
  collection.find({'_id' => {'$lt' => time_id}})
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.