Reputation: 11687
This really might be a dumb question around firebase. With free tier, we have a quota of limited reads and writes.
Realtime/Firestore
)?Remote config
is documented as free, so what is free exactly? We have unlimited number of key-value or also their reads.Upvotes: 0
Views: 3481
Reputation: 598603
All Firebase quota, pricing and limits are per product.
Firebase Remote Config is free to use. The only limits on usage are those mentioned in the documentation here.
Firebase Cloud Message is free to use. Its limits too are mentioned in the documentation, and are mostly around message size and around throttling and scaling (as those may affect service availability).
Neither of these products has a quote beyond which you are expected to pay.
For the Firebase Realtime Database and Cloud Firestore each project has a free quota that is documented on the Firebase pricing page.
If your project is on the free plan, the service stops working when you reach that free quota.
If your project is on the paid plan, you will start paying once your usage surpasses the free quota.
Upvotes: 1