こんにちは、私は ReactiveMongo と Play を使用しています。MongoDB コマンドをコレクションで実行できるようにしたいと考えています。
私のコレクションは次のように宣言されています:
def thingsJSONCollection : Future[JSONCollection] =
database.map( connectedDb =>
connectedDb.collection[JSONCollection]("thingsCollection")
)
実行したいコマンドは次のように宣言されています:
val commandDocument = Json.obj(
"geoNear" -> "thingsCollection",
"near" -> Json.obj(
"type" -> "Point",
"coordinates" -> Seq(lon, lat)),
"spherical" -> true,
"minDistance" -> 0,
"maxDistance" -> 5000
)
最後に、コンパイルされないコードを次に示します。
thingsJSONCollection.map{
collection => collection.runCommand( commandDocument )
}
コマンドを実行しようとすると、基本的にそれが引数としてrunCommand
受け入れられないことを示す長いエラーメッセージが表示されます。JsObject
Error:(618, 57) overloaded method value runCommand with alternatives:
[C <: reactivemongo.api.commands.CollectionCommand](command: C)(implicit writer: collection.pack.Writer[reactivemongo.api.commands.ResolvedCollectionCommand[C]])reactivemongo.api.commands.CursorFetcher[collection.pack.type,reactivemongo.api.Cursor] <and>
[R, C <: reactivemongo.api.commands.CollectionCommand with reactivemongo.api.commands.CommandWithResult[R]](command: C with reactivemongo.api.commands.CommandWithResult[R])(implicit writer: collection.pack.Writer[reactivemongo.api.commands.ResolvedCollectionCommand[C]], implicit reader: collection.pack.Reader[R], implicit ec: scala.concurrent.ExecutionContext)scala.concurrent.Future[R]
cannot be applied to (play.api.libs.json.JsObject)
thingsJSONCollection.map(collection => collection.runCommand(commandDocument))
^
ReactiveMongo を使用して、Play から MongoDB コレクションで生のコマンドを実行する方法を見つけるのを手伝ってくれませんか?