The limit you’re referring to is the limit for the number of concurrently connected users to Firebase Realtime Database on the free Spark plan. Once you upgrade to a payment plan, your project will allow 200,000 simultaneously connected users .
Read moreWhere are Firebase users?
The user data for firebase authentication is stored in firebaseLocalStorageDb in IndexedDB . After login to website, if you delete firebaseLocalStorageDb , the login user data for firebase authentication is all deleted so you need to log in website again.
Read moreHow are users counted in Firebase?
There’s no built-in method to do get the total user count. You can keep an index of userIds and pull them down and count them . However, that would require downloading all of the data to get a count.
Read more