如果日期相同,则使用$gt
查询无法正常工作。它更像$gte
。
但是如果我在查询参数中添加1秒,那么它就可以了。
以下是示例查询;
我有一份文件creation_date
1367414837
时间戳。
db.collection.find({creation_date : {'$gt' : new Date(1367414837000)}});
此查询与日期1367414837
的文档匹配
如果我增加查询时间戳,只需1367414838
。它可以预期。
我使用mongo控制台,但我在php MongoDate
编辑:查询输出
db.collection.findOne({creation_date : {'$gt' : new Date(1367414837000)}});
{
"_id" : ObjectId("5181183543c51695ce000000"),
"action" : {
"type" : "comment",
"comment" : {
"id" : 74,
"post_id" : "174",
"owner_id" : "5",
"text" : "ne diyeyim lae :D",
"creation_date" : "2013-05-01 16:27:17"
}
},
"creation_date" : ISODate("2013-05-01T13:27:17.336Z"),
"owner" : {
"id" : "5",
"username" : "tylerdurden"
}
}
edit2:问题是mongo的php扩展。它被记录为“当文件被发送到数据库或从数据库发送时,任何超过毫秒的精度都将丢失。” http://php.net/manual/en/class.mongodate.php
我将查询参数增加一秒作为周转解决方案。
答案 0 :(得分:3)
Dates in BSON是UNIX日期,等于自纪元以来的毫秒;它们精确到毫秒级。如果您插入(并尝试匹配)的时间精确到毫秒级别,那么您尝试匹配的元素可能比您查询的时间戳晚几毫秒,$gt
可能正如预期的那样工作。 (2013-05-01T13:27:17.001Z确实晚于2013-05-01T13:27:17Z,例如。)