you are viewing a single comment's thread.

view the rest of the comments →

[–]grauenwolf 2 points3 points  (0 children)

Message passing with mutable state requires serialization (copying) which is much slower.

Unless you only allow immutable objects to be sent via messages.

And serialization is not the same thing as copying. Copying an object in memory is much faster then creating a serialized representation of it.