Why? While Nxweb looks very promising, my first question would be 'Why should I use it over eg Nginx?' It would be helpful to have some direct comparison to other servers on the landing page. EDIT: Ok, there is a link to some odd benchmarks and it includes performance comparisons to Nginx and others which are not understandable (Nginx 141 req/s and Nxweb 200 / 121 req/s while it's not clear when 200 and when 121); mo…
Mongoose is a web server. See https://github.com/cesanta/mongoose . It's obviously not https://github.com/Automattic/mongoose .
Nxweb – Fast and Lightweight Web Server
11–20 of 75 posts
Re: Nxweb – Fast and Lightweight Web Server
#12Re: Nxweb – Fast and Lightweight Web Server
#13Re: Nxweb – Fast and Lightweight Web Server
#14Why? While Nxweb looks very promising, my first question would be 'Why should I use it over eg Nginx?' It would be helpful to have some direct comparison to other servers on the landing page. EDIT: Ok, there is a link to some odd benchmarks and it includes performance comparisons to Nginx and others which are not understandable (Nginx 141 req/s and Nxweb 200 / 121 req/s while it's not clear when 200 and when 121); mo…
Re: Nxweb – Fast and Lightweight Web Server
#15Why? While Nxweb looks very promising, my first question would be 'Why should I use it over eg Nginx?' It would be helpful to have some direct comparison to other servers on the landing page. EDIT: Ok, there is a link to some odd benchmarks and it includes performance comparisons to Nginx and others which are not understandable (Nginx 141 req/s and Nxweb 200 / 121 req/s while it's not clear when 200 and when 121); mo…
Re: Nxweb – Fast and Lightweight Web Server
#16A lot of ad-tech companies build ad-servers in C, because the latency is so crucial in that context.
e.g. node.js has no problem getting 20k/sec per core, but a stall at the wrong time kills every pipelined HTTP request that follows (until you tear down the connection and restart it).
Re: Nxweb – Fast and Lightweight Web Server
#17A lot of ad-tech companies build ad-servers in C, because the latency is so crucial in that context.
I took part in a few projects that replaced high throughput servers handling mobile network traffic from C++ to Java.
Re: Nxweb – Fast and Lightweight Web Server
#18Why? While Nxweb looks very promising, my first question would be 'Why should I use it over eg Nginx?' It would be helpful to have some direct comparison to other servers on the landing page. EDIT: Ok, there is a link to some odd benchmarks and it includes performance comparisons to Nginx and others which are not understandable (Nginx 141 req/s and Nxweb 200 / 121 req/s while it's not clear when 200 and when 121); mo…
Those benchmarks are well and great but with HTTP/2 support in nginx, do they even matter? I'm reasonably certain that nginx will out-perform for the average client in real-world, TLS-enabled testing.
Re: Nxweb – Fast and Lightweight Web Server
#19Technically, there's no good reason why a FastCGI based system would be significantly slower than a custom reimplementation like this.
Re: Nxweb – Fast and Lightweight Web Server
#20A lot of ad-tech companies build ad-servers in C, because the latency is so crucial in that context.
Or they don't know any better. I took part in a few projects that replaced high throughput servers handling mobile network traffic from C++ to Java.