Firebase simultaneous realtime connections to my database

前端 未结 3 506
醉酒成梦
醉酒成梦 2020-12-02 01:30

I have the free plane in Firebase - I have 100 simultaneous realtime connections. But I didnt understand one thing: Now, No one connected to my app, and in Firebase - It is

3条回答
  •  死守一世寂寞
    2020-12-02 02:10

    A simultaneous connection is equivalent to one mobile device, browser tab, or server app connected to the database. This isn't the same as the total number of users of your app, because your users don't all connect at once. For example, apps with 10 million monthly active users usually have fewer than 200,000 simultaneous connections. Your max simultaneous connections depends on your total user count and the average time users spend in your app.

    Source : Firebase Documentation on Realtime Database Limits

    Q : I have 100 connections in general or maximum 100 simultaneous realtime connections?

    A : It's 100 simultaneous realtime connections.

提交回复
热议问题