I ask this question, because Heroku or CloudControl are not really explicit on how a free application can consume their ressources?!
The application will use event driven based server (Node or Tornado), and event driven is monothreaded, so here is my questions:
- How many users in a day can a free application handle, since event driven are not heavy for the CPU, nor for Memory?
- In Tornado (I dont know about Node), you can use
ThreadPoolExecutor
that can use another thread in case of time consuming operations, will the free offer allow me to use this option? Or i will be limited for one thread only?