Boosting Nginx Performance with Thread Pools
1–10 of 48 posts
Re: Boosting Nginx Performance with Thread Pools
#2Re: Boosting Nginx Performance with Thread Pools
#3Re: Boosting Nginx Performance with Thread Pools
#4Re: Boosting Nginx Performance with Thread Pools
#5Most people when hearing about "thread pools" in the context of a web-server think about using multiple threads for handling separate requests, which is NOT what this is about. It is using threads to enable some blocking syscalls (read and sendfile) to run asynchronously from the main event loop.
There's already a library for that! http://software.schmorp.de/pkg/libeio.html
Re: Boosting Nginx Performance with Thread Pools
#6Re: Boosting Nginx Performance with Thread Pools
#7https://www.usenix.org/legacy/event/usenix99/full_papers/pai...
Re: Boosting Nginx Performance with Thread Pools
#8I think this would have been much better titled "Boosting NGINX Performance 9x with Asynchronous wrappers around blocking system calls". Most people when hearing about "thread pools" in the context of a web-server think about using multiple threads for handling separate requests, which is NOT what this is about. It is using threads to enable some blocking syscalls (read and sendfile) to run asynchronously from the ma…
Re: Boosting Nginx Performance with Thread Pools
#9Re: Boosting Nginx Performance with Thread Pools
#10Well at least it isn't a 503