user6175355
user6175355

Reputation:

How much traffic can a app on a Heroku free tier handle?

I want to know how many concurent number of users at a time can use app deploy on free tier of heroku?

Note : App server is by default

Upvotes: 0

Views: 2478

Answers (1)

Damien MATHIEU
Damien MATHIEU

Reputation: 32629

There is no definitive answer to that. It depends of too many factors: what requests your users are making. How heavy/optimized those requests are being the two biggest ones.

A free dyno will get 512MB of RAM, and 1CPU share from the instance machine.
You'll need to do benchmarking to know what kind of traffic your app can handle with that, as it does depend of your app's code.

Upvotes: 3

Related Questions