Created
April 25, 2013 20:46
-
-
Save ilguzin/5463042 to your computer and use it in GitHub Desktop.
Akka config for remoting + serialization cutomization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
akka { | |
actor { | |
provider = "akka.remote.RemoteActorRefProvider" | |
serialize-messages = on | |
serializers { | |
proto = "akka.remote.serialization.ProtobufSerializer" | |
} | |
serialization-bindings { | |
"scala.collection.immutable.List" = proto | |
} | |
} | |
remote { | |
netty { | |
hostname = "127.0.0.1" | |
port = 2001 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment