Use zeromq to implement an acting model

Is there anyone who has implemented an actor model using zeromq? how is the performance? Which template is used? REQ / REP, PUB / SUB or PUSH / PULL?

I used another library called theron. But performance is not very good due to context switching.

Can I share my thoughts / design?

+6
source share
1 answer

"Akka provides a ZeroMQ module that abstracts the ZeroMQ connection and therefore allows interaction between Akka chords through ZeroMQ connections."

http://doc.akka.io/docs/akka/2.0.2/java/zeromq.html

+2
source

Source: https://habr.com/ru/post/920294/


All Articles