Firebase 并发连接数?
Firebase concurrent connections?
我遇到了 post Concurrent firebase
根据 post 上的最佳答案,如果 用户 John 在 12:00 上线,保持在线 24 小时,用户Mike 12:01 上线, 在线24小时 , 用户Jack 12:02 上线, 仅在线24小时, 然后firebase 在 24 小时内只有 1 个并发连接.
我理解的对吗?
我很困惑,因为我认为并发连接意味着一次连接到服务器,但根据 上面的解释,并发连接意味着连接同时开始?
我不知道你是如何从 accepted answer by @MikePugh 得出结论的。正文:
Concurrent connections are just that - connections established at the same time. So if you have 3 people using your app to check scores, but user 1's app goes online at 12:00 PM and the connection lasts for 5 seconds, then user 2's app goes online at 12:01 PM for 5 seconds, and user 3's app goes online at 12:02 PM for 5 seconds then you've only ever had 1 concurrent connection.
我强调了您在文案中似乎跳过的部分。
在 Mike 给出的示例中,每个用户只连接了很短的时间。因此,永远不会超过一个并发连接。事实上,在一天的大部分时间里(23 小时 59 分 45 秒),有 0 个连接。鉴于 Firebase 按第 95 个百分位计费,您需要为 0 个并发连接付费(如果他们提供这样的等级)。
您表示您的用户保持连接 24 小时,这导致从 12:02 到午夜有 3 个并发连接。所以大多数时候你会有 3 个并发连接。
我遇到了 post Concurrent firebase
根据 post 上的最佳答案,如果 用户 John 在 12:00 上线,保持在线 24 小时,用户Mike 12:01 上线, 在线24小时 , 用户Jack 12:02 上线, 仅在线24小时, 然后firebase 在 24 小时内只有 1 个并发连接.
我理解的对吗?
我很困惑,因为我认为并发连接意味着一次连接到服务器,但根据 上面的解释,并发连接意味着连接同时开始?
我不知道你是如何从 accepted answer by @MikePugh 得出结论的。正文:
Concurrent connections are just that - connections established at the same time. So if you have 3 people using your app to check scores, but user 1's app goes online at 12:00 PM and the connection lasts for 5 seconds, then user 2's app goes online at 12:01 PM for 5 seconds, and user 3's app goes online at 12:02 PM for 5 seconds then you've only ever had 1 concurrent connection.
我强调了您在文案中似乎跳过的部分。
在 Mike 给出的示例中,每个用户只连接了很短的时间。因此,永远不会超过一个并发连接。事实上,在一天的大部分时间里(23 小时 59 分 45 秒),有 0 个连接。鉴于 Firebase 按第 95 个百分位计费,您需要为 0 个并发连接付费(如果他们提供这样的等级)。
您表示您的用户保持连接 24 小时,这导致从 12:02 到午夜有 3 个并发连接。所以大多数时候你会有 3 个并发连接。