Re: [Vala] Soup.Buffer memory

2013-09-25 Thread andrea zambon
Thank you! I added: msg.response_body.set_accumulate (false); Now it works correctly and the memory is stable. The performace is good also with MemoryUse.COPY. I do not understand the difference between EOF and CHUNKED about the connection. I will study better. Thank you. 2013/9/25 Evan

[Vala] Soup.Buffer memory

2013-09-24 Thread andrea zambon
I am developing a service http with libsoup, but I have a memory problem. When you make a request, the service memory increases during transmission and decreases only after the closure of the service. Another call and will increase again. The client is in another machine and the data may be very

Re: [Vala] Soup.Buffer memory

2013-09-24 Thread Evan Nemerson
On Tue, 2013-09-24 at 14:24 +0200, andrea zambon wrote: I am developing a service http with libsoup, but I have a memory problem. When you make a request, the service memory increases during transmission and decreases only after the closure of the service. Another call and will increase again.