Re: [akka-user] Memory model, messages and remoting

2015-10-18 Thread Viktor Klang
Hi Florian, On Sun, Oct 18, 2015 at 8:00 PM, olf sync wrote: > Thanks √ for your response. > > I use https://github.com/romix/akka-kryo-serialization at the moment. > > I have a lot of actors on System B, which get messages from ONE actor from > system A. They get all the

Re: [akka-user] Memory model, messages and remoting

2015-10-18 Thread olf sync
Thanks √ for your response. I use https://github.com/romix/akka-kryo-serialization at the moment. I have a lot of actors on System B, which get messages from ONE actor from system A. They get all the same message and have to keep some information from inside the message inside the actor (but

[akka-user] Memory model, messages and remoting

2015-10-16 Thread olf sync
Hallo everyone, first thanks for the great framework. I have a question about the akka memory model and remoting. If I have two hosts (A,B) and have the Actors A1,B1,B2, would the SAME message send from A1 to Actor B1 and A1 to B2 saved twice inside the memory model of Host B or only once?

Re: [akka-user] Memory model, messages and remoting

2015-10-16 Thread Viktor Klang
Hallo! The same instance would be serialized twice, it is up to the configured Serializer implementation if it wants to memoize/cache etc it's up to it to do so. On Fri, Oct 16, 2015 at 10:33 AM, olf sync wrote: > Hallo everyone, > > first thanks for the great framework. I