如何在scala中使用reactive mongo在mongodb中编写日期范围查询

时间:2014-11-10 19:00:31

标签: mongodb scala datetime bson reactivemongo

我在数据库中的会话集合看起来像

{ "_id" : ObjectId("545afeb0fb8af1531e70e762"), "sId" : "g38699im4g9fz6ri6pqd31odc0fzy6", "appId" : "c6s3ki1hgay9ntavyt8mxi54ukcfci", "events" : [ { "eType" : "untimed", "name" : "testing", "sId" : "g38699im4g9fz6ri6pqd31odc0fzy6", "st" : ISODate("2014-11-06T04:51:04Z"), "et" : ISODate("2014-11-06T04:52:44Z"), "screen" : "dummy", "data" : "{\"item\":\"immortals of meluha\",\"qty\":\"2\"}" }, { "eType" : "untimed", "name" : "testing", "sId" : "g38699im4g9fz6ri6pqd31odc0fzy6", "st" : ISODate("2014-11-06T04:51:04Z"), "et" : ISODate("2014-11-06T04:52:44Z"), "screen" : "dummy", "data" : "{\"item\":\"immortals of meluha\",\"qty\":\"2\"}" } ], "device" : { "model" : "", "mem" : "", "screen" : { "size" : "", "density" : "", "aspect" : "" } }, "network" : { "career" : "", "nType" : "" }, "location" : { "lat" : "", "long" : "" }, "user" : { "uId" : "ewkrmwyaidx5avo2adj7nh839mrzdc", "data" : "{}" }, "competetors" : [ ], "st" : ISODate("2014-11-06T04:51:04Z"), "duration" : -1, "tData" : [ ] }

我正试图让日期范围之间的会话。 当我做

之类的事情
val query = BSONDocument("st" -> BSONDocument("$gt" -> BSONDateTime(1415229720*1000L) )  )
collection.find(query).cursor[BSONDocument].enumerate().apply(Iteratee.foreach { doc => println("found document: " + BSONDocument.pretty(doc)) })

它为我提供了数据库中的所有会话,而只有5个会话大于给定的纪元。

我也尝试过这样做

val query = BSONDocument("st" -> BSONDocument("$gte" -> BSONDateTime(1415228760*1000L)).add( BSONDocument("$lte" -> BSONDateTime(1415229720*1000L) ) ) )

但它不起作用。

在两个时间戳之间查询具有“st”的会话类的正确方法是什么?

2 个答案:

答案 0 :(得分:1)

查询如下所示:

 val query = BSONDocument( "st" -> BSONDocument("$gte" -> BSONDateTime(datetime1.getMillis),
                                                   "$lt" -> BSONDateTime(datetime2.getMillis))
                )

响应式mongo BSONDocument()查询格式几乎完全类似于此处描述的mongo格式: http://cookbook.mongodb.org/patterns/date_range/ 特别是这个片段:

db.posts.find({"created_on": {"$gte": start, "$lt": end}})

一个完整的例子:http://codepaste.net/8of6eb

答案 1 :(得分:0)

所以我认为这样的事情应该有效:

val map = Map("$gt" -> min, "$lt" -> max)

val cursor = MongoObj.mongoPerform
  .find(
        Json.obj("date" -> map)
  )
  .cursor[Perform]