Как использовать транзакцию с ReactiveMongo? - PullRequest
0 голосов
/ 25 сентября 2019

Я пытаюсь использовать транзакцию с реактивным mongodb в playframework.Как я могу это сделать или есть какая-либо документация для playframework?

1 Ответ

0 голосов
/ 25 сентября 2019

В документации вы можете найти пример использования MongoDB> 4 транзакций.

import scala.concurrent.{ ExecutionContext, Future }

import reactivemongo.bson.BSONDocument

import reactivemongo.api.DefaultDB

def testTx(db: DefaultDB)(implicit ec: ExecutionContext): Future[Unit] = 
  for {
    dbWithSession <- db.startSession()
    dbWithTx <- dbWithSession.startTransaction(None)
    coll = dbWithTx.collection("foo")

    _ <- coll.insert.one(BSONDocument("id" -> 1, "bar" -> "lorem"))
    r <- coll.find(BSONDocument("id" -> 1)).one[BSONDocument] // found

    _ <- db.collection("foo").find(
      BSONDocument("id" -> 1)).one[BSONDocument]
      // not found for DB outside transaction

    _ <- dbWithTx.commitTransaction() // or abortTransaction()
      // session still open, can start another transaction, or other ops

    _ <- dbWithSession.endSession()
  } yield ()
...