views:

452

answers:

3

I just can't find how many apps you can host on heroku with one dyno?

I plan to host a lot of small apps with little traffic.

Thanks for your answers

A: 

One App per Dyno / subdomain.heroku.com.

Marcel J.
Damn this mean, if I want to host 2 or 3 small apps with little traffic I'd have to pay for 3 dynos :/I think I'll go VPS
Brandom
Exactly.. or use `n` free dynos by Heroku - if they are as small as you say they should fit in the `free` one. But I think VPS/Root is the better idea.
Marcel J.
Thanks! BTW can you recommend me some good ones (except slicehost)?
Brandom
+1  A: 

Dynos are calculated on a per application basis.

However, this doesn't mean you need to buy 3 dynos to run 3 apps. You can create 3 application each with 1 dyno.

Simone Carletti
Great! How do you know when the dyno is getting too small?
Brandom
When your app start throwing 504 errors http://docs.heroku.com/errors#backlog-too-deep-http-504
Simone Carletti
A: 

Some explanation here: http://docs.heroku.com/performance#backlog-too-deep

Artur Carvalho