BSONArrayからJSONテキストを返す最も速い方法は何ですか?Return ReactiveMongo Play FrameworkのJSON
私は非常に大きなJSON文書を返しています。
Ok(result.toTextJSON).as(MimeTypes.JSON)
ここ更新私の完全なコード:
を私は速いのようなものになると思いますval result:BSONArray = ....
Ok(Json.toJson(result))
を:それはPlay
JsValue
は今、私はこのように戻ってる処理を省略することができます
val command = Json.parse(s""" {
"aggregate": "$collection",
"pipeline": [
{ "$$match": { "$$and" : [
{ "${RootAttrs.TIME}" : { "$$gt": $startSecTime }},
{ "${RootAttrs.TIME}" : { "$$lt": $endSecTime }},
{ "${RootAttrs.COMMAND}" : { "$$eq": ${toCmd(Command.GPS_COORDINATES)} }}
]
}},
{ "$$sort": { "${RootAttrs.TIME}" : 1 }},
{ "$$limit": $MAX_GPS_ALL_DATA },
{ "$$project" : { "_id":0, "${RootAttrs.TIME}":1, "${RootAttrs.COMMAND}":1, "${RootAttrs.VALUE}":1, "${RootAttrs.IGNITION}":1, "${RootAttrs.SIM_NUMBER}":1 } }
]}""")
db.command(RawCommand(BSONDocumentFormat.reads(command).get)).map { out =>
out.get("result").map {
case result: BSONArray =>
Logger.debug("Loaded all GPS history data size: " + result.length)
Ok(Json.toJson(result)) // <- I need just return JSON, parsing to JsValue can take some time
case _ =>
Logger.error("Result GPS history data not array")
BadRequest
}.getOrElse(BadRequest)
}
はあなたがここでより包括的なコード例を追加していただけますか? – marcospereira