Need your take on CTPL implementation
Hello there,
I'm developing a software which going to process heavy network traffics. (so many short-lived network sessions) And I have difficulty to select a good threadpool library for my use-case.
My first attempt was to use CTPL (https://github.com/vit-vit/CTPL), which provides non-blocking queue (from Boost - with no lib dependency). From performance perspective I didn't get good result, as matter of fact, when i compare the threadpool performance vs creating the threads on-fly , I get better result from creating threads over and over again !
So first, as you published your benchmark versus other libraries. I'd be appreciated if you could include CTPL into your benchmark tests.
Also, in other posts, I found your working on your library for improvement. Is there any time-line for next release ?
Thanks.