sql >> Database >  >> NoSQL >> MongoDB

Haal de retourwaarde van de functie Reactivemongo findAndUpdate op

Probeer dit:

case class Person(name: String, count: Int)

object Helpers { 
  def increaseCount(collection: BSONCollection): Future[Option[Int]] = {
    import collection.BatchCommands.FindAndModifyCommand.FindAndModifyResult
    implicit val reader = Macros.reader[Person]

    val resultFut: Future[FindAndModifyResult] = collection.findAndUpdate(
      BSONDocument("name" -> "James"),
      BSONDocument("$inc" -> BSONDocument("count" -> 1)),
      fetchNewObject = true,
      upsert = true
    )

    val updatedCountOpt = resultFut.map { r =>
      r.result[Person].map { p =>
        p.count
      }
    }

    updatedCountOpt
  }
}



  1. ZRANGESTORE eerdere Redis 6.2.0

  2. Mongodb voegt document in zonder _id-veld

  3. Redis / Haal alle sleutels en waarden op uit redis met prefix

  4. Mongodb groeperen en sorteren