I thought that one of the advantages of using a stateless web framework such as Play was that a load-balancer could send requests to any node and not be concerned with which node receives the request. I am concerned about how Akka integration affects statelessness. By spawning an actor using the built-in system, aren't I potentially creating state that lives beyond a single request and is tied to a single instance of the application?
I think it would be fairly common to want to spawn an actor that lives beyond a single request and is accessible from multiple application instances. Is there a common pattern for accomplishing this? Would it be necessary to use a remote actor system for spawning this actor or can the local built-in play system be used in some way?