Reputation: 21
currently I am using free Persoanl Heroku plan. Can I know how many users can access my app ? I mean what is the limit of users which can access and purchase book from the app at the same time. https://ranjenbookstore.herokuapp.com/ ? This is a bookstore where user can purchase and add items to shopping cart. Can I know if there is limit. How many users can access at same time if I upgraded to Hobby plan?
Upvotes: 0
Views: 1036
Reputation: 826
The only sure way to know is to subject your app to a load test (for example, using loader.io. They have an addon on Heroku).
You can also calculate your hard upper limit by multiplying the number of your web instances (heroku ps web
) by your concurrency level (max number of processes and/or threads). This is usually set in WEB_CONCURRENCY
environment variable.
Upvotes: 1