You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@qpid.apache.org by Rajesh Khan <ra...@gmail.com> on 2012/11/30 19:45:39 UTC

Suggestions on this Sender and Receiver configuration

If I am creating a sender that would send more than a thousand messages on
a queue in a second and a receiver that would receive these messages
are these configurations suitable

sender->setCapacity(200);
and the message is sent using : sender->send(message);

and the receiver has the following
 receiver.Capacity = 1000;
 and after every 10 messages it calls session_n.Acknowledge(false);

Any suggestions ? Furthermore would topics yield even a higher throughput.
I know UDP is faster than TCP