Elwin, > hi all: > when i run the example of " > A Request-Reply Broker > "(rrclient.c, rrserver.c and rrbroker.c in git) > and remove all printf() and sleep(), i found that rate of transmission less > than 5000req/s, i think it's abnormal.
It's pretty normal and the text explains this. You're doing round-trip request-replies, which adds considerable latency. You'll only get really good performance from 0MQ (or any messaging) when you do asynchronous streams of messages. -Pieter _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
