- Akka is a great fit for building scalable applications on Heroku due to its "let it crash" philosophy and ability to easily scale out by adding more dynos. Within each dyno, Akka actors can be used to build highly concurrent and resilient applications.
- While remoting and clustering between dynos is not supported due to Heroku's HTTP-only architecture, Akka actors work well within individual dynos to handle requests and background jobs.
- A simple Akka application can be deployed to Heroku with no code changes - Akka will automatically scale out by creating actor instances on each dyno. The talk