I currently have the following configuration and wanted to know if there
was anything that I can do to boost the performance of my LVQ.Also there
are some questions:
The sender creates a LVQ with the following configuration
"queue_name;{create:always, node:{type:queue,
x-declare:{arguments:{'qpid.last_value_queue_key':'updates' ,
'qpid.policy_type': ring, 'qpid.max_count': 0, 'qpid.max_size': 0}}}}";
The sender has a capacity of 1500
Now The receiver is in browse mode and has a capacity of 5000
Here are some questions that I had
1)Will removing 'qpid.policy_type': ring, 'qpid.max_count': 0,
'qpid.max_size': 0 have any effect on the performance of the queue.
2)If I have multiple receivers on the same queue (both in browse mode) and
in the same application will that make any difference. Wouldn't both go
over the same messages.I dot see how having multiple receivers on browse
mode make a difference on message consumption rate of a queue.
3)Any suggestions on what I could do to enhance the performance of the
Queue/sender/Receiver?