Does Akka support in-process messaging without object serialization?

前端 未结 1 1810
半阙折子戏
半阙折子戏 2021-01-18 12:09

Looking to use Akka Actors to communicate events between Java threads in the same JVM. Some of these events contain large objects (10-100Mb). I want to avoid serializing the

相关标签:
1条回答
  • 2021-01-18 13:10

    Akka treats local message passing as an optimization, bypassing the remoting machinery which includes the message serializer. See location transparency.

    0 讨论(0)
提交回复
热议问题