I am reading about the actor model recently, and I found it's a good programming model for concurrent issues. There are many program languages or tools that use this, like Scala, Jetlang, Klimi, etc.
But how can use these be used in a common web application (a Servlet based one for example)? Servlets are executed in multi-threaded style. Can we use the actor model to eliminate shared date like member variables in a Servlet (or SpringMVC controller etc..)?
Are there any Servlet containers that handle concurrent requests using the actor model?