Quote Originally Posted by balitong
However, my application would need to send to about 50 hosts at 10 post/sec each, I'm worrying about the performance of instantiating so many QHttp and freeing the memory.
You can store once initialised objects and reuse them later instead of freeing them.

Don't you think sending 500 requests per second might be considered flooding the network?


Have anyone ran a load test on the performance of QHttp? Is there any other http libraries that you could recommend?
If any, then libcurl, but I doubt you'll get better performance. It processes requests sequentially too, afaik.

I'm a newbie in the world of HTTP, so please forgive my ignorance. I would try to do a load test and ran the application for a few days with the new changes to see the performance though.
I'm sure QHttp will suffice.