step-up-labs / firebase-database-dotnet

C# library for Firebase Realtime Database.
MIT License
668 stars 168 forks source link

No. of simultaneous connections #299

Open AchuthanR opened 1 year ago

AchuthanR commented 1 year ago

When I create listeners on multiple paths, each listener is considered as one connection unlike the SDK. While using the official SDKs, each device is considered as one connection even if it has multiple listeners. The limit for the Blaze plan is only 200000 simultaneous connections. This might quickly exhaust the available count.

I know one workaround is to use database sharding and split the paths to be listened upon.

But I'd like to know if there is any other solution.