Akka - How many instances of an actor should you create?
问题 I'm new to the Akka framework and I'm building an HTTP server application on top of Netty + Akka. My idea so far is to create an actor for each type of request. E.g. I would have an actor for a POST to /my-resource and another actor for a GET to /my-resource. Where I'm confused is how I should go about actor creation? Should I: Create a new actor for every request (by this I mean for every request should I do a TypedActor.newInstance() of the appropriate actor)? How expensive is it to create