[akka-user] Re: Akka sensible design choice for a stateless server

2015-11-10 Thread Richard Grossman
Hi As someone that have a Akka actor based application in production and handling ~ 2 billions request/day I really encourage you to start working with Akka-http and akka-Stream instead just Akka actor based. The concern are not about the developement (easier with akka actor) but the tuning

[akka-user] Re: Akka sensible design choice for a stateless server

2015-11-09 Thread Guido Medina
I think you are looking at it from a very simplistic perspective without taking into account many details that happen behind the scene, people tend to use concurrent execution wrong where at the end of the day you still have a finite set of processors -and small amount- so concurrent IMHO or at

[akka-user] Re: Akka sensible design choice for a stateless server

2015-11-09 Thread Guido Medina
The analogy of the JMM for Akka is also very interesting, it is an important aspect of Akka to be aware of http://doc.akka.io/docs/akka/2.4.0/general/jmm.html On Monday, November 9, 2015 at 9:02:08 PM UTC, Stuart Reynolds wrote: > > In a highly concurrent system, it seems to me that the major