Firebase - Multiple users simultaneously updating same object using its old value

前端 未结 2 758
被撕碎了的回忆
被撕碎了的回忆 2020-12-11 03:05

I\'m keeping track of a count that users update on the Firebase database through an Android app. The way it works right now is that upon interaction the user\'s app looks up

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-11 03:45

    Firebase database handles up to 100 simultaneous real time connections to your database if your are using their free plan but once the 101st users connects to your database the database would stop responding and would display the values that were last edited. Firebase is really good at handling real time connections simultaneously so it depends on your pricing plans. If you want to use the database for free, there will be no issues handling 100 connections but if you want to handle more users use their generous pricing plans.

提交回复
热议问题