Skip to content

Instantly share code, notes, and snippets.

@ilguzin
Created April 25, 2013 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilguzin/5463042 to your computer and use it in GitHub Desktop.
Save ilguzin/5463042 to your computer and use it in GitHub Desktop.
Akka config for remoting + serialization cutomization
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