Scala播放Salat聚合示例
我在后端使用了MongoDB的Scala Play 2.x,我必须承认Salat对mongo CRUD操作有很好的支持。
但到目前为止,我没有找到任何可以使用SALAT调用mongo聚合函数的好例子,如$ unwind,$ match,$ group或aggregate pipeline。
例如
db.posts.aggregate([
{
$unwind :"$tag"
},
{ $group :
{
_id :"$tags",
count : {$sum :1}
}
},
{
$sort : {$post :-1}
},
{
$limit :1
}
])
更新(备选)我没有找到任何帮助系统地解释SALAT中聚合查询的用法。 所以作为一项解决方案,我还添加了一个casbah
支持SBT中的聚合查询,并能够与SALAT并行开展工作。
val appDependencies = Seq(
"se.radley" %% "play-plugins-salat" % "1.3.0",
"org.mongodb" %% "casbah" % "2.6.3"
)
提前致谢
我的salat版本:
libraryDependencies ++= Seq(
"se.radley" %% "play-plugins-salat" % "1.4.0"
)
代码示例:
dao.collection.aggregate(
MongoDBObject(
"$unwind" -> "$tag"
),
MongoDBObject(
"$group" -> MongoDBObject(
"_id" -> "$tags",
"count" -> MongoDBObject("$sum" -> 1)
)
),
MongoDBObject(
"$sort" -> MongoDBObject(
"$post" -> -1
)
),
MongoDBObject(
"$limit" -> 1
)
)
链接地址: http://www.djcxy.com/p/65691.html