Let’s say I want to create a chat system with Akka.
In the system, I would probably have a UserActor that manages all messages for a certain user.
If I now deploy this in an Akka Cluster, how can I make sure that actorOf gets a (remote) reference to the right UserActor for a certain user? So no duplicates exists on different nodes...