0

For example will update(sfDocRef, "population", newPopulation) and update(sfDocRef, "count", newCount) be counted as separate document write. Or should i use set() method


db.runTransaction { transaction ->
    val snapshot = transaction.get(sfDocRef)

    val newPopulation = snapshot.getDouble("population")!! + 1
    val newCount = snapshot.getLong("count")!! + 1
    it.apply {
         update(sfDocRef, "population", newPopulation)
         update(sfDocRef, "count", newCount)
    }  
}
Syed Umair
  • 1,189
  • 1
  • 10
  • 12

1 Answers1

0

It is considered as a seperate write operation. It is better to combine those. I think this will help you. Link

fatalcoder524
  • 1,358
  • 1
  • 5
  • 15