How Should I Estimate Usage?
First time building and launching a mobile app coded in react native.
I optimized all my api calls as much as I can and its about 3-4 per screen (using cURLS as of now to access backend).
I also have 1 auth token that is refreshed each time the User reloads a feed, so it can assign them a new JWT token.
Now, on the launch side (I work in marketing), I am expecting quite a bit of users on launch around ~1k users.
How much should I be estimating I will get in auth, storage and api calls? Even thought it is unlimited calls, what would be considered too much?
Thank you
I optimized all my api calls as much as I can and its about 3-4 per screen (using cURLS as of now to access backend).
I also have 1 auth token that is refreshed each time the User reloads a feed, so it can assign them a new JWT token.
Now, on the launch side (I work in marketing), I am expecting quite a bit of users on launch around ~1k users.
How much should I be estimating I will get in auth, storage and api calls? Even thought it is unlimited calls, what would be considered too much?
Thank you