Re: Memory keeping increasing when using Qpid, can any one help?

2017-10-20 Thread question
Frank. -- Original -- From: "question";<46970...@qq.com>; Date: Oct 20, 2017 To: "users"; Subject: Re: Memory keeping increasing when using Qpid, can any one help? Hi Chris, Thanks for your mail. I see the memory usage mor

Re: Memory keeping increasing when using Qpid, can any one help?

2017-10-19 Thread question
is a wrapper on a smart pointer which I strongly suspect will be in use by the session until the background session.acknowledge() operation has finished with it." Seems it is not releasing the memory at all. Is there anyway to release them? Thanks, Frank -- Original -

Re: Memory keeping increasing when using Qpid, can any one help?

2017-10-19 Thread Chris Richardson
Fank, You should bear in mind that the messaging interfaces are concurrent - in the case of your sender, the sender.send(message) call is non-blocking and will queue messages up to the capacity of the sender (default: 50) and will then block until the queue has a slot available. This behaviour can

Memory keeping increasing when using Qpid, can any one help?

2017-10-19 Thread question
Dear all, Sorry to disturb you. I am new to Qpid. When I tried to write a simple sender and receiver by splitting the HelloWorld example in Qpid cpp 1.36. I met memory problem. HelloWord1 is responsible receiving data as below: Connection connection(broker, connectio