actually I realised that some work has been done: like https://github.com/sourcedelica/akka/blob/wip-3842-message-sequence-pattern-ericp/akka-contrib/src/main/scala/akka/contrib/pattern/MessageSequence.scala
but as I get deeper into akka I think the best way is not to slice messages (since the slices will also jam the single tcp connection that aka uses for all remoteing ) I ended up using Akka IO for these big payload messages. Although it does complicate error handling. My application is clustered and I first need to use messaging to find the right Akka IO server and then deserialize my messages. Anyway its only a small price and Akka IO is awesome Am Freitag, 10. Juli 2015 19:55:58 UTC+2 schrieb [email protected]: > > Right now I am using the maximum-frame-size to allow large message > payloads. > Is there any akka lib which can "transparently" on one side split and on > the other side join such a message? > > > -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
